Skip to content

add better labeling for endpoints #25

add better labeling for endpoints

add better labeling for endpoints #25

Workflow file for this run

name: test
on: [push, workflow_call]
jobs:
test:
strategy:
matrix:
go-version: [ 1.22.x ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./... -race