Skip to content

Add NewOrderedMapWithCapacity (#48) #43

Add NewOrderedMapWithCapacity (#48)

Add NewOrderedMapWithCapacity (#48) #43

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
unit-tests:
strategy:
matrix:
go:
- '=1.18'
- '^1.23'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- run: go test -v ./...
- run: cd v2 && go test -v ./...