vm/.github/workflows/check-code-with-shellcheck.yml
2021-08-22 18:03:00 +02:00

21 lines
435 B
YAML

on:
push:
branches-ignore:
# Do not push events to branches matching autocommit
- 'autocommit'
name: 'check-code-with-shellcheck'
jobs:
shellcheck:
name: Github Actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run Shellcheck
uses: ludeeus/action-shellcheck@master
with:
check_together: 'yes'
env:
SHELLCHECK_OPTS: -e SC2059 -e SC2034