Skip to content

Commit

Permalink
chores: bump go version in test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
butuzov committed Dec 8, 2023
1 parent ddde9ed commit fc1052a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
go:
- "1.19"
- "1.20"
- "1.21"
steps:

- uses: actions/checkout@v4
Expand All @@ -40,11 +41,11 @@ jobs:

- name: Install goveralls
env: { GO111MODULE: "off" }
if: matrix.go == '1.20'
if: matrix.go == '1.21'
run: go get github.com/mattn/goveralls

- name: Coverage - Sending Report to Coveral
if: matrix.go == '1.20'
if: matrix.go == '1.21'
env:
COVERALLS_TOKEN: ${{ secrets.github_token }}
run: goveralls -coverprofile=coverage.cov -service=github
Expand All @@ -59,5 +60,5 @@ jobs:
version: latest
skip-build-cache: true
skip-pkg-cache: true
args: -D deadcode --skip-dirs "^(cmd|testdata)"
args: --skip-dirs "^(cmd|testdata)"

0 comments on commit fc1052a

Please sign in to comment.