Skip to content

[AOMP] Add shellcheck workflow #1

[AOMP] Add shellcheck workflow

[AOMP] Add shellcheck workflow #1

Workflow file for this run

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 {} \;