Skip to content

Commit

Permalink
Fixed github action to run coveralls only on go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
msoap committed Sep 20, 2023
1 parent 71de1fe commit 4d43189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: go test -race -v ./...

- name: Coveralls
if: ${{ startsWith(matrix.go, '1.20') && github.event_name == 'push' }}
if: ${{ startsWith(matrix.go, '1.21') && github.event_name == 'push' }}
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Expand Down

0 comments on commit 4d43189

Please sign in to comment.