Skip to content

CI: Add AM test suite #8

CI: Add AM test suite

CI: Add AM test suite #8

Workflow file for this run

---
name: 🐶 SHELL check 🧪
on:
push:

Check failure on line 4 in .github/workflows/lint-shell.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint-shell.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
branches: '**'
paths:
- 'modules/**'
- INSTALL
- APP-MANAGER
- '!programs/**'
pull_request:
branches: '**'
paths:
- 'modules/**'
- INSTALL
- APP-MANAGER
- '!programs/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
reviewdog:
permissions:
checks: write
contents: read
pull-requests: write
name: shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: haya14busa/action-cond@v1
id: reporter
with:
cond: ${{ github.event_name == 'pull_request' }}
- uses: reviewdog/action-shellcheck@v1
with:
reporter: ${{ steps.reporter.outputs.value }}
github_token: ${{ secrets.github_token }}
path: "."
check_all_files_with_shebangs: true
level: error
shellcheck_flags: '--external-sources --severity=error'