chore: rename CI workflow file path
Some checks failed
Bash Scripts CI/CD / lint (pull_request) Failing after 22s

This commit is contained in:
Jan K9f 2025-04-07 19:20:01 +02:00
parent 36516ca001
commit 7abda2fcd4
Signed by: jank
GPG key ID: B9F475106B20F144

View file

@ -1,22 +0,0 @@
name: Bash Scripts CI/CD
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
workflow_dispatch:
# Allows manual triggering
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install shellcheck
run: sudo apt-get install -y shellcheck
- name: Lint bash scripts
run: |
find . -type f -name "*.sh" -exec shellcheck {} \;