mirror of
https://github.com/d3vyce/PenTools.git
synced 2025-04-03 13:53:22 +02:00
15 lines
361 B
YAML
15 lines
361 B
YAML
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 . -name '*.sh' -exec shellcheck {} \;
|