Skip to content

Benchmark code removed as per request #468

Benchmark code removed as per request

Benchmark code removed as per request #468

Workflow file for this run

name: windows
on: [push]
jobs:
build:
name: build
runs-on: [windows-latest]
strategy:
matrix:
go: ["stable", "oldstable"]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
id: go
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test ./...