Skip to content

Commit 4254584

Browse files
committed
move to go 1.19 and remove code coverage check
1 parent abda943 commit 4254584

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
strategy:
1313
matrix:
14-
GO_VERSION: [ "1.17" ]
14+
GO_VERSION: [ "1.19" ]
1515
steps:
1616
- name: Check out the codebase.
1717
uses: actions/checkout@v3
@@ -34,7 +34,4 @@ jobs:
3434
run: |
3535
go mod download
3636
set -x
37-
go test -covermode atomic -race -timeout 120s -coverprofile ./coverage.out $(go list ./...)
38-
cov="$(go tool cover -func coverage.out | grep -v 100.0% || true)"
39-
echo $cov
40-
test -z "$cov"
37+
go test atomic -race -timeout 120s $(go list ./...)

0 commit comments

Comments
 (0)