Skip to content

chore: remove deprecated apis (#105) #9

chore: remove deprecated apis (#105)

chore: remove deprecated apis (#105) #9

Workflow file for this run

name: unit-test
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
permissions: read-all
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: go mod tidy
run: |
go mod tidy
git diff --exit-code
- name: test
run: make test
- name: build
run: make bin