Skip to content

Commit

Permalink
ci(pytest): fix by using scalar over literal syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Oct 20, 2023
1 parent d64ba4c commit 2b7c3b9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/r-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- id: download-images
name: Download image cache
- name: Download Image Cache
id: download-images
uses: actions/download-artifact@v3
with:
name: image-cache
Expand Down Expand Up @@ -67,12 +67,13 @@ jobs:
-- wait-for-it central:8383 --strict --timeout=30 \
-- pytest
cache-images:
# This stage only runs if the images were not found in the cache
upload-img-cache:
needs: [run-pytest]
if: ${{ needs.run-pytest.outputs.img_cache_loaded != true}}
uses: hotosm/gh-workflows/.github/workflows/image_cache.yml@main
with:
image_names: |
image_names: >
docker.io/postgis/postgis:${{ vars.POSTGIS_TAG }}
ghcr.io/hotosm/fmtm/odkcentral:${{ vars.ODK_CENTRAL_TAG }}
ghcr.io/hotosm/fmtm/odkcentral-proxy:${{ vars.ODK_CENTRAL_TAG }}
Expand Down

0 comments on commit 2b7c3b9

Please sign in to comment.