fixes: Remove auth bypass in for HOTOSM org #1785 #794
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
name: 🧪 PR Test Backend | |
on: | |
pull_request: | |
branches: | |
- main | |
- staging | |
- development | |
# Workflow is triggered only if src/backend changes | |
paths: | |
- src/backend/** | |
# Allow manual trigger (workflow_dispatch) | |
workflow_dispatch: | |
jobs: | |
pytest: | |
uses: hotosm/gh-workflows/.github/workflows/[email protected] | |
with: | |
image_name: ghcr.io/${{ github.repository }}/backend | |
build_context: src/backend | |
pre_command: docker compose up -d proxy && docker compose exec api /app-entrypoint.sh | |
compose_service: api | |
compose_command: pytest | |
cache_extra_imgs: | | |
"docker.io/postgis/postgis:${{ vars.POSTGIS_TAG }}" | |
"docker.io/minio/minio:${{ vars.MINIO_TAG }}" | |
# For caching odk central image & proxy image, add: | |
# "ghcr.io/${{ github.repository }}/odkcentral:${{ vars.ODK_CENTRAL_TAG }}" | |
# "ghcr.io/${{ github.repository }}/proxy:${{ github.head_ref }}" | |
# ${{ github.head_ref }} --> target branch in PR | |
secrets: inherit |