From cc25ac923f17d73634033d852061fa37ffa58af8 Mon Sep 17 00:00:00 2001 From: Brandon Dyck Date: Fri, 21 Aug 2026 18:21:16 -0600 Subject: [PATCH] Check and test code on psuh --- .gitea/workflows/pr.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pr.yaml b/.gitea/workflows/pr.yaml index 39c49de..19cb73a 100644 --- a/.gitea/workflows/pr.yaml +++ b/.gitea/workflows/pr.yaml @@ -2,7 +2,17 @@ name: Test and check on: - push jobs: - run-tests: + test-and-check: runs-on: brandon-ubuntu-latest steps: - - run: echo 'Hello gitea actions!' + - 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 ./... + +