Skip to content

audit: add tracked-artifacts dimension #19

audit: add tracked-artifacts dimension

audit: add tracked-artifacts dimension #19

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Vet
run: go vet ./...
- name: Run tests with coverage
run: go test -coverprofile=coverage.out ./...
- name: Drift guards (SPOR / AX-7 / test-imports)
run: |
bash tests/cli/imports/check.sh
python3 tests/cli/naming/check.py
python3 tests/cli/test_imports/check.py
- name: Upload to Codecov
uses: codecov/codecov-action@v5
with:
files: coverage.out
token: ${{ secrets.CODECOV_TOKEN }}