Add Gitea Actions workflow copy

This commit is contained in:
2026-01-25 01:33:41 +00:00
parent f9ebc5523a
commit 7004caf4d1

View File

@@ -0,0 +1,21 @@
name: ShellCheck
on:
push:
paths:
- "dotfiles/**/*.sh"
- ".github/workflows/shellcheck.yml"
pull_request:
paths:
- "dotfiles/**/*.sh"
- ".github/workflows/shellcheck.yml"
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install ShellCheck
run: sudo apt-get update && sudo apt-get install -y shellcheck
- name: Run ShellCheck
run: shellcheck dotfiles/**/*.sh