Skip to content

build(deps): bump codecov/codecov-action from 5.0.2 to 5.0.7 #71

build(deps): bump codecov/codecov-action from 5.0.2 to 5.0.7

build(deps): bump codecov/codecov-action from 5.0.2 to 5.0.7 #71

Workflow file for this run

name: test
on:
pull_request:
paths-ignore:
- '*.md'
push:
branches:
- master
paths-ignore:
- '*.md'
jobs:
test:
name: test
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.19
- uses: actions/checkout@v4
- name: Test (race)
run: go test ./... -race
- name: Test (coverage)
run: go test ./... -coverprofile=coverage.txt -covermode=atomic
- name: Codecov
uses: codecov/codecov-action@v5.0.7
with:
files: ./coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}