Skip to content

performance: Initialize capacity on copy (#51) #52

performance: Initialize capacity on copy (#51)

performance: Initialize capacity on copy (#51) #52

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
unit-tests-v2:
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 ./...
unit-tests-v3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '^1.23'
- run: cd v3 && go test -v ./...