You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
name: CI Checks
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ["**"]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
spell-check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout Parent Repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: main
|
|
|
|
repository: aws/aws-iot-device-sdk-embedded-C
|
|
|
|
path: main
|
|
|
|
- name: Clone This Repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
path: ./kernel
|
|
|
|
- name: Install spell
|
|
|
|
run: |
|
|
|
|
sudo apt-get install spell
|
|
|
|
sudo apt-get install util-linux
|
|
|
|
- name: Check spelling
|
|
|
|
run: |
|
|
|
|
PATH=$PATH:main/tools/spell
|
|
|
|
# Make sure that the portable directory is not included in the spellcheck.
|
|
|
|
sed -i 's/find $DIRNAME/find $DIRNAME -not -path '*portable*'/g' main/tools/spell/find-unknown-comment-words
|
|
|
|
find-unknown-comment-words --directory kernel/ --lexicon ./kernel/.github/lexicon.txt
|
|
|
|
if [ "$?" = "0" ]; then
|
|
|
|
exit 0
|
|
|
|
else
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
url-check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Clone This Repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
path: ./kernel
|
|
|
|
- name: URL Checker
|
|
|
|
run: |
|
|
|
|
bash kernel/.github/actions/url_verifier.sh kernel
|