Skip to content

Performance upgrade #26

Performance upgrade

Performance upgrade #26

Workflow file for this run

name: build
on:
push:
branches:
- '*'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
run:
name: Go
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
go-version: [ 1.21.x, 1.22.x ]
operating-system: [ ubuntu-latest, windows-latest, macos-latest ]
env:
GO111MODULE: on
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v2
- name: Go Test
run: go test -v -race ./...