Skip to content

V1 api

V1 api #293

Workflow file for this run

on: [push, pull_request]
name: Tests-linux
jobs:
test:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: go mod tidy check
run: .github/scripts/modtidy-check.sh
- name: Tests
run: go test -race -shuffle=on ./...