Skip to content

Commit

Permalink
Update spellings action, and call spell check action from test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aggarw13 committed Dec 23, 2020
1 parent 379d73f commit edb0671
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 14 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
with:
path: coreMQTT
test-doxygen-check:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
Expand All @@ -45,3 +45,16 @@ jobs:
uses: ./doxygen
with:
path: coreMQTT
test-spell-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
with:
repository: FreeRTOS/coreMQTT
ref: main
path: coreMQTT
- name: Test spell check action
uses: ./spellings
with:
path: coreMQTT
4 changes: 3 additions & 1 deletion spellings/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ runs:
run: |
sudo apt-get install spell
sudo apt-get install util-linux
shell: bash
- name: Check spelling
run: |
PATH=$PATH:$GITHUB_ACTION_PATH/tools
Expand All @@ -24,4 +25,5 @@ runs:
then
exit 1
fi
done
done
shell: bash

0 comments on commit edb0671

Please sign in to comment.