Skip to content

Bump codecov/codecov-action from 4 to 5 #497

Bump codecov/codecov-action from 4 to 5

Bump codecov/codecov-action from 4 to 5 #497

Workflow file for this run

name: test
on:
push: { branches: [main] }
pull_request: { branches: [main] }
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
cache: false
- run: make check
env: { SKIP_LINT: true }
- uses: golangci/golangci-lint-action@v6
with: { version: "latest" }
- run: make cov
- uses: codecov/codecov-action@v5
env: { CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}" }
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.23"
cache: false
- run: make test