Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/azure-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ jobs:


# ------------------------------------------------------------
# Execute Integration Tests
# Verify Deployment
# ------------------------------------------------------------

integration-tests:
name: Execute Integration Tests
verify-deployment:
name: Verify Deployment
needs: deploy
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:

cleanup:
name: Clean Up Resources
needs: [ deploy, integration-tests ]
needs: [ deploy, verify-deployment ]
if: ${{ success() && (github.event_name != 'workflow_dispatch' || github.event.inputs.cleanup-resources == 'true') }}
runs-on: ubuntu-latest
permissions:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ The pipeline consists of the following jobs:

- **Build, Verify and Package**: This job sets up the build environment, validates the Bicep template and packages the integration tests.
- **Deploy to Azure**: This job provisions the Azure infrastructure and deploys the packaged applications to the created resources.
- **Execute Integration Tests**: This job runs automated [integration tests](#integration-tests) on the deployed resources to verify correct functionality.
- **Verify Deployment**: This job runs automated [integration tests](#integration-tests) on the deployed resources to verify correct functionality.
- **Clean Up Resources**: This job removes all deployed Azure resources.

By default, cleanup runs automatically after the deployment. This can be disabled via an input parameter when the workflow is triggered manually.
Expand Down