Skip to content

✅Unit Testing Status Check (preview branch) #225

✅Unit Testing Status Check (preview branch)

✅Unit Testing Status Check (preview branch) #225

name: ✅Testing Status Check
run-name: ✅Unit Testing Status Check (${{ github.base_ref }} branch)
defaults:
run:
shell: pwsh
on:
pull_request_target:
branches: [main, preview]
jobs:
main_tests:
name: Run ${{ vars.PROJECT_NAME }} Tests
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
with:
project-name: "${{ vars.PROJECT_NAME }}Tests"
build-config: Debug
net-sdk-version: "${{ vars.NET_SDK_VERSION }}"
checkout-ref: ${{ github.event.pull_request.head.ref }}
checkout-repository: ${{ github.event.pull_request.head.repo.full_name }}
secrets:
cicd-pat: ${{ secrets.CICD_TOKEN }}
integration_tests:
name: Run ${{ vars.PROJECT_NAME }} Integration Tests
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
with:
project-name: "${{ vars.PROJECT_NAME }}IntegrationTests"
build-config: Debug
net-sdk-version: "${{ vars.NET_SDK_VERSION }}"
checkout-ref: ${{ github.event.pull_request.head.ref }}
checkout-repository: ${{ github.event.pull_request.head.repo.full_name }}
secrets:
cicd-pat: ${{ secrets.CICD_TOKEN }}
test_status_check:
name: ${{ vars.PROJECT_NAME }} Test Status Check
needs: [main_tests, integration_tests]
runs-on: ubuntu-latest
steps:
- name: Print Status Check Pass Message
shell: pwsh
run: Write-Host "::notice::✅Test Status Check Passed✅";