Skip to content

Commit

Permalink
rename test action & test docker caching
Browse files Browse the repository at this point in the history
  • Loading branch information
jashapiro committed Mar 7, 2024
1 parent a249c24 commit 1053e3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ on: [push]
jobs:
spell-check:
runs-on: ubuntu-latest
name: A job to say hello
name: Test the spell check action
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- name: Spell check action
uses: ./ # Uses an action in the root directory
id: spell
id: spell
# Use the output from the `spell check` step
- name: Get the number of errors
run: |
echo "There were ${{ steps.spell.outputs.error_count }} errors"
cat spell_check_errors.tsv
cat spell_check_errors.tsv

0 comments on commit 1053e3f

Please sign in to comment.