faster iandnot between bitmap containers and run containers #425
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go-legacy-CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.14.x] | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Test | |
run: | | |
GOARCH=386 go build ./roaring64 | |
GOARCH=386 go build ./BitSliceIndexing | |
GOARCH=386 go test -v | |
GOARCH=386 go test -v ./roaring64 | |
GOARCH=386 go test -v ./BitSliceIndexing |