Skip to content

Bump codecov/codecov-action from 3.1.1 to 4.5.0 #113

Bump codecov/codecov-action from 3.1.1 to 4.5.0

Bump codecov/codecov-action from 3.1.1 to 4.5.0 #113

Workflow file for this run

name: Test
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
test:
strategy:
matrix:
go-version: [1.18] # TODO: add 1.19
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- run: go test -coverprofile=coverage.txt -covermode=atomic -race ./...
- uses: codecov/codecov-action@v4.5.0