scale-catalog/.github/workflows/shellcheck.yml
Kjeld Schouten-Lebbing 2c75cfe0ea
Wiki replacement and CI update (#86)
* dhcp uses on, not true (because iocage syntax)

* Documentation updates

* Add gh-pages wiki generator using mkdocs

* Update shellcheck.yml

* Update wiki.yml

* Add filecheck

* readme case correction1

* readme case correction2

* Update filecheck.yml
2020-04-26 16:00:47 +02:00

19 lines
423 B
YAML

# This is a workflow to run shellcheck on all scripts
name: Shell Linter QC
# 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