Skip to content

Merge pull request #102 from glocurrency/release-please--branches--main #32

Merge pull request #102 from glocurrency/release-please--branches--main

Merge pull request #102 from glocurrency/release-please--branches--main #32

Workflow file for this run

name: coverage
on:
push:
branches: [main]
jobs:
unit:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
- uses: brokeyourbike/go-mockery-action@v0.2
with:
mockery-version: '2.53.3'
- run: make mock
- run: go test -race -covermode=atomic -coverprofile=coverage.out -v ./...
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out