Files
b cc25ac923f
Test and check / test-and-check (push) Failing after 1m34s
Check and test code on psuh
2026-08-21 18:21:16 -06:00

19 lines
388 B
YAML

name: Test and check
on:
- push
jobs:
test-and-check:
runs-on: brandon-ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- name: Check SPDX headers
run: go run ./internal/check
- name: Run unit tests
run: go test ./...