Files
aria-infrastructure-queen/.github/workflows/ci.yml
2026-03-09 06:52:08 -05:00

10 lines
231 B
YAML

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