From 2d7ad10ef029a8c0b825a975148bbf5d94286650 Mon Sep 17 00:00:00 2001 From: Marc-Alexandre Ghaly Date: Tue, 19 Dec 2023 00:15:48 -0500 Subject: [PATCH] workflow phpcpd continue on error true --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75a7a00..fda9866 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,4 +5,10 @@ on: [push, pull_request] jobs: ci: - uses: catalyst/catalyst-moodle-workflows/.github/workflows/ci.yml@main \ No newline at end of file + name: PHP Copy/Paste Detector + continue-on-error: true # This step will show errors but will not fail + if: ${{ !cancelled() }} + run: moodle-plugin-ci phpcpd + + uses: catalyst/catalyst-moodle-workflows/.github/workflows/ci.yml@main +