NOREF: Replace docker-compose with docker compose #4177
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 Build and Test | |
on: | |
pull_request: | |
# This concurrency group exists with cancel-in-progress: true so that only the latest run of the workflow is executed (as its all that should matter). | |
concurrency: | |
group: pr-build-and-test-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Build_Application_Images: | |
uses: ./.github/workflows/build_application_images.yml | |
secrets: inherit | |
Build_Test_Frontend_Assets: | |
uses: ./.github/workflows/build_frontend_assets.yml | |
secrets: inherit | |
with: | |
env: test | |
Run_Tests: | |
uses: ./.github/workflows/run_tests.yml | |
needs: [Build_Application_Images,Build_Test_Frontend_Assets] | |
secrets: inherit |