2026-02-15 11:26:27 -07:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches: [main]
|
|
|
|
|
pull_request:
|
|
|
|
|
branches: [main]
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
shellcheck:
|
|
|
|
|
runs-on: ubuntu-latest
|
2026-02-16 09:20:45 -07:00
|
|
|
container: ghcr.io/catthehacker/ubuntu:act-22.04
|
2026-02-15 11:26:27 -07:00
|
|
|
steps:
|
2026-02-16 09:20:45 -07:00
|
|
|
- uses: actions/checkout@v4
|
2026-02-15 11:26:27 -07:00
|
|
|
- name: Install ShellCheck
|
2026-02-16 09:20:45 -07:00
|
|
|
run: apt-get update && apt-get install -y shellcheck
|
2026-02-15 11:26:27 -07:00
|
|
|
- name: Run ShellCheck
|
|
|
|
|
run: shellcheck systab
|