ci: add CI/CD workflow for Bash scripts linting #1

Open
jank wants to merge 5 commits from ci into main

18
.forgejo/workflows/ci.yml Normal file
View file

@ -0,0 +1,18 @@
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@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master