Skip to content

Commit

Permalink
Add acceptance stage GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yingtingxu committed Jun 19, 2024
1 parent eb24a9a commit 845a1b8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/acceptance-stage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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"

0 comments on commit 845a1b8

Please sign in to comment.