From c434fb144bace89d8e3064e2d4b0a35dd2358aeb Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 31 Dec 2024 10:04:59 +0100 Subject: [PATCH] [TASK] Drop the CI action that requires test coverage This tool has turned out to be less helpful for our project that we had hoped. --- .github/workflows/require-tests.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/require-tests.yml diff --git a/.github/workflows/require-tests.yml b/.github/workflows/require-tests.yml deleted file mode 100644 index a4a7a6c6..00000000 --- a/.github/workflows/require-tests.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: 'Require Tests on Code Change' - -on: - pull_request_target: - types: [opened] - -jobs: - check: - name: 'Require Tests on Code Change' - - runs-on: ubuntu-22.04 - - steps: - - name: "Execute tests-checker-action" - uses: infection/tests-checker-action@v1.0.2 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - comment: Could you please add tests to make sure this change works as expected? - fileExtensions: '.php' - testDir: 'tests' - testPattern: '*Test.php'