started testing workflow

This commit is contained in:
CPunch 2023-11-25 23:36:02 -06:00
parent bb50948935
commit d31723e245
1 changed files with 24 additions and 0 deletions

24
.github/workflows/tests.yaml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Go
on:
push:
paths:
- ./**.go
- go.mod
- go.sum
- .github/workflows/tests.yaml
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Test with the Go CLI
run: go test -v ./...