added test workflow

This commit is contained in:
Ethan Knowlton 2023-10-05 11:54:19 -04:00
parent 5cd6d48c2d
commit 40d7dfebb8
1 changed files with 22 additions and 0 deletions

22
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.13.x"
- name: Display Go version
run: go version
- name: Run tests
run: go test ./...