Skip to content

Commit c121f37

Browse files
committed
fix(ci): set working directory for Codecov Test Run step
1 parent bf68376 commit c121f37

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,22 @@ jobs:
3535
strategy:
3636
fail-fast: true
3737
matrix:
38-
go: ["1.21", "1.22", "1.23"]
38+
go: ["1.21", "1.22", "1.23", "1.24"]
3939
name: Go ${{ matrix.go }} version
4040
steps:
4141
- name: Check out repository code
4242
uses: actions/checkout@v5
4343
- name: Setup go
44-
uses: actions/setup-go@v6
44+
uses: actions/setup-go@v5
4545
with:
4646
go-version: ${{ matrix.go }}
4747
- name: Codecov Test Run
48+
working-directory: .
4849
run: |
4950
go get
5051
go test -v -race -coverprofile=coverage.txt -covermode=atomic
5152
- name: Codecov Test Upload
52-
uses: codecov/codecov-action@v5
53+
uses: codecov/codecov-action@v4
5354

5455
build:
5556
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)