Skip to content

Merge pull request #447 from RoaringBitmap/fix_returned_value_roaring… #553

Merge pull request #447 from RoaringBitmap/fix_returned_value_roaring…

Merge pull request #447 from RoaringBitmap/fix_returned_value_roaring… #553

Workflow file for this run

name: Go-CI
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.17.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: |
go build -tags appengine
go test -tags appengine
go test -v
go test -v ./roaring64
go test -v ./BitSliceIndexing