Skip to content

update: unified api #66

update: unified api

update: unified api #66

Workflow file for this run

name: unittest
on:
pull_request:
push:
branches:
- 'main'
paths-ignore:
- 'docs/**'
- '**.md'
jobs:
unittest:
strategy:
fail-fast: true
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go 1.20
uses: actions/setup-go@v3
with:
go-version: "1.20"
- name: Run unit tests
run: make test