Skip to content

swiss: report performance counters in benchmarks #112

swiss: report performance counters in benchmarks

swiss: report performance counters in benchmarks #112

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
go:
- '1.20'
- '1.21'
- '1.22'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- run: go test -v -tags swiss_invariants
linux-race:
name: go-linux-race
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- run: go test -v -race
linux-32bit:
name: go-linux-32bit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- run: GOARCH=386 go test -v -tags swiss_invariants