diff --git a/.github/workflows/azure-dev.yml b/.github/workflows/azure-dev.yml index 9ec7f5a..e2ab256 100644 --- a/.github/workflows/azure-dev.yml +++ b/.github/workflows/azure-dev.yml @@ -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: @@ -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: diff --git a/README.md b/README.md index 46bbf0b..244b8c5 100644 --- a/README.md +++ b/README.md @@ -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.