MB-65018 add custom_filter/custom_score query nodes with context-driven callback hooks #2515
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
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| name: Tests | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [1.23.x, 1.24.x, 1.25.x] | |
| platform: [ubuntu-latest, macos-latest, windows-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@v2 | |
| - name: Test | |
| run: | | |
| go version | |
| go test -race ./... |