Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
env:
GO_VERSION: 1.22.2
jobs:
unit-test:
name: Unit Tests
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Golang
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run Unit Test
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4