Skip to content

Commit

Permalink
move to go 1.19 and remove code coverage check
Browse files Browse the repository at this point in the history
  • Loading branch information
atoulme committed Apr 28, 2023
1 parent abda943 commit 6af8966
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
GO_VERSION: [ "1.17" ]
GO_VERSION: [ "1.19" ]
steps:
- name: Check out the codebase.
uses: actions/checkout@v3
Expand All @@ -34,7 +34,4 @@ jobs:
run: |
go mod download
set -x
go test -covermode atomic -race -timeout 120s -coverprofile ./coverage.out $(go list ./...)
cov="$(go tool cover -func coverage.out | grep -v 100.0% || true)"
echo $cov
test -z "$cov"
go test -race -timeout 120s $(go list ./...)

0 comments on commit 6af8966

Please sign in to comment.