Skip to content

Commit

Permalink
github: Skip tests on Go 1.20 for now
Browse files Browse the repository at this point in the history
See #38
  • Loading branch information
bep committed Mar 1, 2023
1 parent c75921d commit 0c7ac34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
#- name: Lint
# run: golint ./...
- name: Test
if: matrix.version != '1.20.x' # See issue 38
run: go test -race ./... -coverpkg=./... -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage
if: success() && matrix.platform == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gohugoio/hugoreleaser

go 1.18
go 1.19

require (
github.com/bep/execrpc v0.7.1
Expand Down

0 comments on commit 0c7ac34

Please sign in to comment.