Fix range_search_max_results to respect all similarity metrics (#5533) #6777
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: Build | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build-pull-request: | |
| uses: ./.github/workflows/build-pull-request.yml | |
| build-release: | |
| uses: ./.github/workflows/build-release.yml | |
| secrets: | |
| ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }} | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
| build-pip: | |
| uses: ./.github/workflows/build-pip.yml | |
| if: github.event_name != 'push' || startsWith(github.ref, 'refs/tags/v') | |
| build-pip-gpu: | |
| uses: ./.github/workflows/build-pip-gpu.yml | |
| if: github.event_name != 'push' || startsWith(github.ref, 'refs/tags/v') |