Skip to content

Show trace when level is debugC #167

Show trace when level is debugC

Show trace when level is debugC #167

Workflow file for this run

name: Unit and Integration Tests
on: [push, pull_request]
permissions:
contents: read
jobs:
unit-tests:
name: Run Unit Tests
strategy:
fail-fast: false
matrix:
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Download dependencies
run: go mod download
- name: Run unit tests
run: go test -tags skip -race -v ./pkg/... -coverprofile ./coverage.txt
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5.1.2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
flags: pkg