From 98bb49a766d688416fefc89f7e3ad8f63841d551 Mon Sep 17 00:00:00 2001 From: flawmop Date: Tue, 2 Jan 2024 20:16:22 -0800 Subject: [PATCH] Add acceptance stage workflow --- .github/workflows/acceptance-stage.yml | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/acceptance-stage.yml diff --git a/.github/workflows/acceptance-stage.yml b/.github/workflows/acceptance-stage.yml new file mode 100644 index 0000000..f968b4b --- /dev/null +++ b/.github/workflows/acceptance-stage.yml @@ -0,0 +1,27 @@ +name: Acceptance Stage +on: + workflow_run: + workflows: ['Commit Stage'] + types: [completed] + branches: main +concurrency: acceptance + +jobs: + functional: + name: Functional Acceptance Tests + if: ${{ github.event.workflow_run.conclusion == 'success' }} + runs-on: ubuntu-22.04 + steps: + - run: echo "Running functional acceptance tests" + performance: + name: Performance Tests + if: ${{ github.event.workflow_run.conclusion == 'success' }} + runs-on: ubuntu-22.04 + steps: + - run: echo "Running performance tests" + security: + name: Security Tests + if: ${{ github.event.workflow_run.conclusion == 'success' }} + runs-on: ubuntu-22.04 + steps: + - run: echo "Running security tests"