Full rewrite
This commit is contained in:
parent
cafcc389ce
commit
81cee16d76
15 changed files with 1233 additions and 131 deletions
17
.github/workflows/shellcheck.yml
vendored
Normal file
17
.github/workflows/shellcheck.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Shellcheck CI
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
runs-on: ubuntu-latest
|
||||
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Check for code quality errors
|
||||
run: ./run_linter.sh
|
Loading…
Add table
Add a link
Reference in a new issue