Acceptance Stage #7
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: Acceptance Stage | |
on: | |
workflow_run: | |
workflows: | |
- 'Commit Stage' | |
types: | |
- completed | |
branches: | |
- main | |
concurrency: | |
group: acceptance | |
jobs: | |
funactional: | |
name: Functional Acceptance Tests | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Running functional acceptance tests" | |
performance: | |
name: Performance Tests | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Running performance tests" | |
security: | |
name: Security Tests | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Running security tests" |