Skip to content

Commit

Permalink
Merge pull request #19 from wanghaochen2024/gh-action
Browse files Browse the repository at this point in the history
  • Loading branch information
xuri authored Dec 11, 2024
2 parents 9ad904a + d73add7 commit c4e9920
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
test:
strategy:
matrix:
go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x]
os: [ubuntu-latest, macos-latest]
go-version: [1.12.x, 1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x, 1.23.x]
os: [ubuntu-24.04, macos-13, windows-latest]
runs-on: ${{ matrix.os }}
steps:

Expand All @@ -28,12 +28,12 @@ jobs:
run: go build -v .

- name: Test
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
run: go test -v -race -coverprofile='coverage.txt' -covermode=atomic ./...

- name: Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{secrets.CODECOV_TOKEN}}
file: coverage.txt
files: coverage.txt
flags: unittests
name: codecov-umbrella

0 comments on commit c4e9920

Please sign in to comment.