allow options for bbolt to be passed to bbolt.Open #36
Workflow file for this run
This file contains hidden or 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: Linux Build & Unit tests | |
| on: | |
| push: | |
| branches: [ "v2" ] | |
| pull_request: | |
| types: [ opened, synchronize, reopened, ready_for_review ] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [ 1.23.x ] | |
| os: [ ubuntu-latest ] | |
| name: Checking | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Setup Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| - name: Build | |
| run: go build -v ./... | |
| - name: Test | |
| run: go test -v ./... |