Skip to content

Commit

Permalink
ci(Go): add Go 1.21 setup to test job
Browse files Browse the repository at this point in the history
  • Loading branch information
Broderick-Westrope committed Aug 22, 2023
1 parent dccc663 commit 7c86e54
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,15 @@ jobs:
run: go build -v ./...

test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'

- name: Test
run: go test -v -cover ./...

0 comments on commit 7c86e54

Please sign in to comment.