2022-06-14 08:36:45 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
name: 'Lint and Test'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
shellcheck:
|
|
|
|
name: Shellcheck
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-06-16 10:47:04 +00:00
|
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
|
2022-06-14 08:36:45 +00:00
|
|
|
- name: Run ShellCheck
|
|
|
|
uses: ludeeus/action-shellcheck@master
|
|
|
|
with:
|
|
|
|
check_together: 'yes'
|
|
|
|
env:
|
|
|
|
SHELLCHECK_OPTS: -e SC2154
|
|
|
|
|
|
|
|
pre-commit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-06-16 10:40:50 +00:00
|
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
|
2022-09-08 18:09:47 +00:00
|
|
|
- uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # tag=v4
|
2022-06-16 10:40:50 +00:00
|
|
|
- uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # tag=v3.0.0
|