add test workflow

This commit is contained in:
Joel Wetzell
2026-05-30 09:20:33 -05:00
parent b7d8e8dddd
commit b71986eaba
+18
View File
@@ -0,0 +1,18 @@
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run tests
run: go test -v .