mirror of
https://github.com/d3vyce/PenTools.git
synced 2025-04-05 14:50:48 +02:00
15 lines
345 B
YAML
15 lines
345 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: shellcheck -S warning *.sh
|