Skip to content

chore: minor improvements #18

chore: minor improvements

chore: minor improvements #18

Workflow file for this run

name: Unit Tests
on:
push:
- main
- v*
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '>=1.22'
- name: Run Tests
run: make test-unit
- name: Upload Coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}