Skip to content

feat(perf): turn on perf boost #339

feat(perf): turn on perf boost

feat(perf): turn on perf boost #339

Workflow file for this run

name: go test ./...
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
go: [stable]
os:
- ubuntu-latest
- macos-latest
- windows-latest
name: test
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Test
run: go test -short ./...