Skip to content

Revert "Re-orangize code for compitable" #89

Revert "Re-orangize code for compitable"

Revert "Re-orangize code for compitable" #89

Workflow file for this run

name: test
on: [push, pull_request]
env:
GOPROXY: https://proxy.golang.org,direct
jobs:
test:
strategy:
matrix:
go-version: [1.21.x, 1.22.x, 1.23.0-rc.2]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test ./... -v -cover