mirror of
https://github.com/danbulant/nekofetch
synced 2026-07-05 19:10:46 +00:00
Add shellcheck workflow and rename deb-build to commit-build
This commit is contained in:
parent
7aa3657ed9
commit
bf832c359f
2 changed files with 16 additions and 0 deletions
16
.github/workflows/shellcheck.yml
vendored
Normal file
16
.github/workflows/shellcheck.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
# Run shellcheck on commit
|
||||||
|
|
||||||
|
name: Check with shellcheck
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Run shellcheck
|
||||||
|
uses: ludeeus/action-shellcheck@master
|
||||||
Loading…
Reference in a new issue