From 2b8b721ec814855d9b694c97cacf013d2b285e02 Mon Sep 17 00:00:00 2001 From: Madison Rye Progress Date: Wed, 18 Mar 2026 23:05:29 -0700 Subject: [PATCH] Add workflow --- .github/workflows/tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..027031b --- /dev/null +++ b/.github/workflows/tests.yml @@ -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 ./...