Files
kairos-agent/.github/workflows/unit-tests.yml
renovate[bot] 3daf912288 chore(deps): update actions/setup-go action to v6 (#960)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-09-04 03:53:15 +00:00

33 lines
844 B
YAML

name: Unit tests
on:
push:
branches:
- main
pull_request:
env:
FORCE_COLOR: 1
concurrency:
group: ci-unit-${{ github.head_ref || github.ref }}-${{ github.repository }}
cancel-in-progress: true
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Go environment
uses: actions/setup-go@v6.0.0
with:
go-version-file: go.mod
- name: Run tests
run: |
go run github.com/onsi/ginkgo/v2/ginkgo run -p --github-output --covermode=atomic --coverprofile=coverage.out --race -r ./...
- name: Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage.out