Skip to content

CI: shellcheck: also run on push #5

CI: shellcheck: also run on push

CI: shellcheck: also run on push #5

Workflow file for this run

name: shellcheck
on:
push
pull_request:

Check failure on line 5 in .github/workflows/shellcheck.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/shellcheck.yaml

Invalid workflow file

You have an error in your yaml syntax on line 5
paths:
- '.github/workflows/shellcheck.yml'
- '**.sh'
jobs:
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: sudo apt update
- run: sudo apt install shellcheck
- run: shellcheck --color=always --enable=all $(find meta-lxatac-bsp meta-lxatac-software -name "*.sh")