Skip to content

fix: Remove sem-rel config #13

fix: Remove sem-rel config

fix: Remove sem-rel config #13

Workflow file for this run

name: "Code Coverage"
on:
push:
branches: master
pull_request:
branches: master
jobs:
code-coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22.x"
- name: Install Dependencies
run: go mod tidy
- name: Run tests with coverage
run: |
go test -coverprofile=coverage.txt -covermode=atomic -coverpkg=./pkg/... ./tests/unit/...
- name: Upload coverage to Codecov
if: github.actor != 'dependabot[bot]'
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true