Skip to content

Bump codecov/codecov-action from 4.5.0 to 5.0.4 #490

Bump codecov/codecov-action from 4.5.0 to 5.0.4

Bump codecov/codecov-action from 4.5.0 to 5.0.4 #490

Workflow file for this run

name: test
on:
push:
branches:
- "master"
pull_request:
types: [opened, synchronize]
branches:
- "*"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: test
run: make test
- name: upload coverage to codecov
uses: codecov/codecov-action@985343d70564a82044c1b7fcb84c2fa05405c1a2 # [email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out
fail_ci_if_error: false
verbose: true