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

20 lines
398 B
YAML

on:
push:
branches:
- '!autocommit' # excludes 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