Skip to content

Making insert benchmark more kickout-heavy #63

Making insert benchmark more kickout-heavy

Making insert benchmark more kickout-heavy #63

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_vet_test:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.15', '>=1.5 <2']
steps:
- uses: actions/checkout@v4
- name: Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Build
run: go build -v ./...
- name: Vet
run: go vet ./...
- name: Test
run: go test -v ./...