Skip to content

feat: add force-configcheck annotation to trigger configcheck manually #22

feat: add force-configcheck annotation to trigger configcheck manually

feat: add force-configcheck annotation to trigger configcheck manually #22

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
workflow_dispatch:
jobs:
unit-tests:
name: Run Unit Tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Run unit tests
run: make test
- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-report-${{ github.run_number }}
path: cover.out
retention-days: 7