Skip to content

Bump codecov/codecov-action from 3.1.5 to 4.0.0 #410

Bump codecov/codecov-action from 3.1.5 to 4.0.0

Bump codecov/codecov-action from 3.1.5 to 4.0.0 #410

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@f30e4959ba63075080d4f7f90cacc18d9f3fafd7 # [email protected]
with:
files: coverage.out
fail_ci_if_error: false
verbose: true