Skip to content

[feat/refactor] Implement v1.7 API #58

[feat/refactor] Implement v1.7 API

[feat/refactor] Implement v1.7 API #58

Workflow file for this run

name: Go Matrix
on: [push, pull_request]
jobs:
cross:
name: Go
runs-on: ${{ matrix.os }}
env:
CGO_ENABLED: 0
strategy:
matrix:
go-version: [ "1.23" ]
os: [ubuntu-latest, macos-latest, windows-latest]
arch: ['x64']
steps:
# https://github.com/marketplace/actions/setup-go-environment
- name: Set up Go ${{ matrix.go-version }} on ${{ matrix.os }}(${{ matrix.arch }})
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
architecture: ${{ matrix.arch }}
# https://github.com/marketplace/actions/checkout
- name: Checkout code
uses: actions/checkout@v4
- name: Lint
uses: golangci/[email protected]
- name: Test
run: go test -v -cover ./...