Skip to content

chore(ci): Update tests action to run django unit tests. #653

chore(ci): Update tests action to run django unit tests.

chore(ci): Update tests action to run django unit tests. #653

Workflow file for this run

name: PR
on:
pull_request:
concurrency:
# Cancel in progress for PR open and close
group: ${{ github.event.number }}
cancel-in-progress: true
jobs:
# https://github.com/bcgov-nr/action-builder-ghcr
builds:
name: Builds
runs-on: ubuntu-latest
strategy:
matrix:

Check failure on line 17 in .github/workflows/pr-open.yml

View workflow run for this annotation

GitHub Actions / PR

Invalid workflow file

The workflow is not valid. .github/workflows/pr-open.yml (Line: 17, Col: 14): Unexpected value ''
# package: [database, backend, frontend, minio]
timeout-minutes: 20
steps:
- uses: bcgov-nr/action-builder-ghcr@v2.2.0
with:
keep_versions: 50
package: ${{ matrix.package }}
tag: ${{ github.event.number }}
tag_fallback: latest
triggers: ('${{ matrix.package }}/')
deploys:
name: Deploys
# needs: [builds]
secrets: inherit
uses: ./.github/workflows/.deploy.yml
tests:
name: Tests
if: needs.deploys.outputs.triggered == 'true'
# needs: [deploys]
uses: ./.github/workflows/.tests.yml
with:
target: ${{ github.event.number }}
results:
name: PR Results
# needs: [builds, deploys, tests]
if: always() && (!failure()) && (!cancelled())
runs-on: ubuntu-latest
steps:
- run: echo "Success!"