Skip to content

Commit a66d70d

Browse files
committed
ci: update checkout and setup-go actions with new versions and config
1 parent 2922e62 commit a66d70d

1 file changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/test.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,11 @@ jobs:
2828
name: Go test coverage check
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v3
32-
- uses: actions/setup-go@v3
33-
34-
- name: generate test coverage
35-
run: go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./...
36-
37-
- name: check test coverage
38-
uses: vladopajic/go-test-coverage@v2
31+
- name: Checkout code
32+
uses: actions/checkout@v4
33+
- name: Set up Go
34+
uses: actions/setup-go@v5
3935
with:
40-
config: ./.testcoverage.yml
36+
go-version: '1.25'
37+
- name: Check coverage
38+
run: make check-coverage

0 commit comments

Comments
 (0)