Skip to content

Commit

Permalink
Add acceptance stage workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
flawmop committed Jan 3, 2024
1 parent 88a192b commit 98bb49a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/acceptance-stage.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 98bb49a

Please sign in to comment.