scale-catalog/.github/workflows/shellcheck.yml
Kjeld Schouten-Lebbing dc6eb4a4b7 Update shellcheck.yml
2020-04-26 14:54:00 +02:00

19 lines
427 B
YAML

# This is a workflow to run shellcheck on all scripts
name: Shellcheck Workflow
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
branches:
- master
- dev
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Shell Linter
uses: azohra/shell-linter@v0.3.0