diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index fb6505324e..9bbd31d31d 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -187,6 +187,22 @@ jobs: run: | python .github/workflows/eslint_disable_check.py + Check-Code-Coverage-Disable: + name: Check for code coverage disable + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.9 + + - name: Run Python script + run: | + python .github/workflows/code_coverage_disable_check.py + Test-Application: name: Test Application runs-on: ubuntu-latest