feature: Replace brute force search with vantage point tree #7
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
# Test that the Dockerfile builds successfully. | |
# This does not test that the newest Python changes work, since the package is installed from pypi. | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
paths: | |
- Dockerfile | |
- docker-entrypoint.sh | |
- .github/workflows/build-docker.yml | |
pull_request: | |
branches: | |
- main | |
- develop | |
paths: | |
- Dockerfile | |
- docker-entrypoint.sh | |
- .github/workflows/build-docker.yml | |
workflow_dispatch: | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build image | |
uses: docker/build-push-action@v6 | |
with: | |
push: false |