Skip to content

Commit

Permalink
ci: add go test check
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmo314 authored Dec 22, 2023
1 parent 7aaeca0 commit e027de6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test
on:
pull_request:

jobs:
go-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.21"
- run: go test -v ./...
- run: go vet -v ./...

0 comments on commit e027de6

Please sign in to comment.