diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 51f736a..0252526 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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' diff --git a/go.mod b/go.mod index 1e69b22..7f090fd 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gohugoio/hugoreleaser -go 1.18 +go 1.19 require ( github.com/bep/execrpc v0.7.1