Skip to content

Commit

Permalink
add acceptance-stage.yml 🐎
Browse files Browse the repository at this point in the history
  • Loading branch information
coverseed committed Jan 10, 2024
1 parent da37428 commit aaac6bc
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/acceptance-stage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Acceptance Stage
on:
workflow_run:
workflows: [ 'Commit Stage' ]
types: [ completed ]
branches: main
concurrency: acceptance

env:
OWNER: polarbookshop
REGISTRY: ghcr.io
APP_REPO: catalog-service
DEPLOY_REPO: polar-deployment
VERSION: ${{ github.sha }}

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 aaac6bc

Please sign in to comment.