File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 28
28
os : [ubuntu-latest, macos-latest, windows-latest]
29
29
# Each major Go release is supported until there are two newer major releases. https://golang.org/doc/devel/release.html#policy
30
30
# Echo tests with last four major releases
31
- go : [1.16, 1.17, 1.18]
31
+ go : [1.16, 1.17, 1.18, 1.19 ]
32
32
name : ${{ matrix.os }} @ Go ${{ matrix.go }}
33
33
runs-on : ${{ matrix.os }}
34
34
steps :
51
51
go test -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
52
52
53
53
- name : Upload coverage to Codecov
54
- if : success() && matrix.go == 1.18 && matrix.os == 'ubuntu-latest'
55
- uses : codecov/codecov-action@v1
54
+ if : success() && matrix.go == 1.19 && matrix.os == 'ubuntu-latest'
55
+ uses : codecov/codecov-action@v3
56
56
with :
57
57
token :
58
58
fail_ci_if_error : false
61
61
strategy :
62
62
matrix :
63
63
os : [ubuntu-latest]
64
- go : [1.18 ]
64
+ go : [1.19 ]
65
65
name : Benchmark comparison ${{ matrix.os }} @ Go ${{ matrix.go }}
66
66
runs-on : ${{ matrix.os }}
67
67
steps :
You can’t perform that action at this time.
0 commit comments