Update build workflows to use image caching, multi-arch, auto-tag #45
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/test_pytest_compose.yml@main | ||
Check failure on line 17 in .github/workflows/pr_test_backend.yml GitHub Actions / PR Test BackendInvalid workflow file
Check failure on line 17 in .github/workflows/pr_test_backend.yml GitHub Actions / PR Test BackendInvalid workflow file
Check failure on line 17 in .github/workflows/pr_test_backend.yml GitHub Actions / PR Test BackendInvalid workflow file
Check failure on line 17 in .github/workflows/pr_test_backend.yml GitHub Actions / PR Test BackendInvalid workflow file
|
||
with: | ||
docker_compose_service: api | ||
cache_imgs: | | ||
"docker.io/postgis/postgis:${{ vars.POSTGIS_TAG }}" | ||
"docker.io/minio/minio:${{ vars.MINIO_TAG }}" | ||
# For caching odk central images, add: | ||
# "ghcr.io/${{ github.repository }}/odkcentral:${{ vars.ODK_CENTRAL_TAG }}" | ||
# "ghcr.io/${{ github.repository }}/odkcentral-proxy:${{ vars.ODK_CENTRAL_TAG }}" | ||
secrets: inherit |