Skip to content

Optimize MapOf's hash functions for integers #128

Optimize MapOf's hash functions for integers

Optimize MapOf's hash functions for integers #128

Workflow file for this run

name: build-1.18
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.18.x]
name: Build with Go ${{ matrix.go-version }}
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Run tests
run: go test -v ./...
- name: Run tests with race detector
run: go test -timeout 10m -race -v ./...