diff --git a/.github/workflows/aomp-shell.yml b/.github/workflows/aomp-shell.yml new file mode 100644 index 000000000..d18291860 --- /dev/null +++ b/.github/workflows/aomp-shell.yml @@ -0,0 +1,16 @@ +name: AOMP Lint + +on: + push: + pull_request: + +jobs: + aomp-lint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Run shellcheck + run: | + find . -name "*.sh" | xargs shellcheck -S info {} \;