mirror of
https://github.com/d3vyce/PenTools.git
synced 2025-11-30 05:20:46 +01:00
Compare commits
3 Commits
v1.2
...
d61d3c9deb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d61d3c9deb | ||
|
|
0faa27c1d8 | ||
|
|
ffe54d460b |
14
.gitea/workflows/shellcheck.yml
Normal file
14
.gitea/workflows/shellcheck.yml
Normal 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: find . -type f -name "*.sh" | xargs shellcheck -S warning
|
||||
Reference in New Issue
Block a user