Add workflow
Some checks failed
Tests / build (push) Failing after 31s

This commit is contained in:
Madison Rye Progress
2026-03-18 23:05:29 -07:00
parent 0ec93d0a1d
commit 2b8b721ec8

17
.github/workflows/tests.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...