ci: add lint makefile job
All checks were successful
CI / Lint Makefile (pull_request) Successful in 22s
CI / Go Lint (pull_request) Successful in 16s
CI / Unit Tests (pull_request) Successful in 12s
CI / Mutation Tests (pull_request) Successful in 36s
CI / Fuzz Tests (pull_request) Successful in 55s

Currently, there is no CI job to lint the Makefile. This adds one.
This commit is contained in:
2026-03-18 20:19:27 -04:00
parent ece10585a5
commit e712c7ad79

View File

@@ -23,6 +23,22 @@ jobs:
with:
version: latest
lint-makefile:
name: Lint Makefile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install gremlins
run: go install github.com/checkmake/checkmake/cmd/checkmake@latest
- name: Run mutation tests
run: make lint-makefile
test-unit:
name: Unit Tests
runs-on: ubuntu-latest