ci: add CI workflow

This commit is contained in:
Alexa Amundson
2026-03-09 06:54:19 -05:00
parent 5152fdf6a3
commit 744e84d40c

9
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,9 @@
name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install -y shellcheck
- run: find . -name "*.sh" -exec shellcheck {} + || true