Skip to content

CI: shellcheck: syntax #7

CI: shellcheck: syntax

CI: shellcheck: syntax #7

Workflow file for this run

name: shellcheck
on:
- push: []
- pull_request:
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")