ci: add lint makefile job #5

Merged
mvhutz merged 2 commits from ci/lint-makefile-job into main 2026-03-19 00:24:25 +00:00

View File

@@ -23,6 +23,22 @@ jobs:
with: with:
version: latest version: latest
lint-makefile:
name: Makefile Lint
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: test-unit:
name: Unit Tests name: Unit Tests
runs-on: ubuntu-latest runs-on: ubuntu-latest