chore: add pr test workflow

This commit is contained in:
Gabe Farrell 2025-06-17 19:45:51 -04:00
parent a11134dd28
commit 548c532f7b

22
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Test
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Run tests
run: go test ./...