Skip to content

Update build workflows to use image caching, multi-arch, auto-tag #43

Update build workflows to use image caching, multi-arch, auto-tag

Update build workflows to use image caching, multi-arch, auto-tag #43

Workflow file for this run

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: ./.github/workflows/r-pytest.yml
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