File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 15
15
strategy :
16
16
fail-fast : true
17
17
matrix :
18
- go : ["1.23", "1.24", "tip" ]
18
+ go : ["1.23", "1.24"]
19
19
20
20
steps :
21
21
- uses : actions/checkout@v4
24
24
uses : actions/setup-go@v5
25
25
with :
26
26
go-version : ${{ matrix.go }}
27
+ cache : true
28
+ cache-dependency-path : " **/go.sum"
27
29
28
30
- uses : actions/cache@v4
29
31
if : ${{ !env.ACT }}
@@ -37,11 +39,11 @@ jobs:
37
39
- run : make tests
38
40
39
41
- name : Install goveralls
40
- if : matrix.go == 'tip '
42
+ if : matrix.go == '1.24 '
41
43
run : go install github.com/mattn/goveralls@latest
42
44
43
45
- name : Coverage - Sending Report to Coveral
44
- if : matrix.go == 'tip '
46
+ if : matrix.go == '1.24 '
45
47
env :
46
48
COVERALLS_TOKEN : ${{ secrets.github_token }}
47
49
run : goveralls -coverprofile=coverage.cov -service=github
You can’t perform that action at this time.
0 commit comments