Skip to content

chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 (#89) #118

chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 (#89)

chore(deps): bump codecov/codecov-action from 4.4.0 to 4.4.1 (#89) #118

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: 5
steps:
- uses: actions/setup-go@v5
with:
go-version: 1.19
- uses: actions/checkout@v4
- run: go test ./... -race -coverprofile=coverage.txt -covermode=atomic
- name: Codecov
uses: codecov/[email protected]
with:
files: ./coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}