From 284f143b5e7ecbe0aaa9ee2d33d21c0e85db1848 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Thu, 2 Mar 2023 18:23:22 +1300 Subject: [PATCH] ENH Don't do cow lint in CI (#12) This belongs as part of the release process, not in CI --- action.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/action.yml b/action.yml index 5952450..d7a1355 100644 --- a/action.yml +++ b/action.yml @@ -245,11 +245,6 @@ runs: echo "Running PHPStan" vendor/bin/phpstan analyse fi - # cow validation is also done here due to it being a tiny piece of work not meriting its own step - if [[ -f .cow.json ]]; then - echo "Running cow schema validate" - vendor/bin/cow schema:validate - fi echo "Passed" - name: "Run PHP coverage"