Add CI to the project (#4)
Some checks failed
shellcheck

* Create shellcheck.yml

* Update shellcheck.yml
This commit is contained in:
d3vyce 2023-03-20 18:39:10 -04:00 committed by GitHub
parent ffe54d460b
commit 0faa27c1d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,14 @@
name: Shellcheck
on: [push]
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up shellcheck
run: |
apt update
apt install -y shellcheck
- name: Analysing the code with shellcheck
run: shellcheck -S warning *.sh