[+] Shellcheck github CI
This commit is contained in:
parent
47c32f07d7
commit
b7f1655472
1 changed files with 20 additions and 0 deletions
20
.github/workflows/main.yml
vendored
Normal file
20
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Shellcheck
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master" ]
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
# Shellcheck
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Run shellcheck
|
||||
run: |
|
||||
apt install -y shellcheck
|
||||
shellcheck neofetch
|
||||
./neofetch
|
Loading…
Reference in a new issue