We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35fc956 commit 44ec56dCopy full SHA for 44ec56d
.github/workflows/main.yaml
@@ -15,7 +15,7 @@ jobs:
15
strategy:
16
fail-fast: true
17
matrix:
18
- go: ["1.23", "1.24", "tip"]
+ go: ["1.23", "1.24"]
19
20
steps:
21
- uses: actions/checkout@v4
@@ -24,6 +24,8 @@ jobs:
24
uses: actions/setup-go@v5
25
with:
26
go-version: ${{ matrix.go }}
27
+ cache: true
28
+ cache-dependency-path: "**/go.sum"
29
30
- uses: actions/cache@v4
31
if: ${{ !env.ACT }}
@@ -37,11 +39,11 @@ jobs:
37
39
- run: make tests
38
40
41
- name: Install goveralls
- if: matrix.go == 'tip'
42
+ if: matrix.go == '1.24'
43
run: go install github.com/mattn/goveralls@latest
44
45
- name: Coverage - Sending Report to Coveral
46
47
env:
48
COVERALLS_TOKEN: ${{ secrets.github_token }}
49
run: goveralls -coverprofile=coverage.cov -service=github
0 commit comments