From 18d8d460007006e9def2c56c7231f5ec5dd8e5d3 Mon Sep 17 00:00:00 2001 From: Jacob Bednarz Date: Wed, 10 Feb 2021 14:55:04 +1100 Subject: [PATCH] crash test removal is no longer needed as we are not including it now --- .github/workflows/php.yml | 8 ++++---- .github/workflows/release.yml | 7 ------- 2 files changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 3747be28..75e1c8f0 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -48,8 +48,11 @@ jobs: uses: php-actions/composer@v5 with: command: run-script clean-crash-test - php_version: ${{ matrix.php-versions }} version: 1 + php_version: 7.4 + + - name: PHP syntax check + run: for f in $(find . -name '*.php'); do php -l $f; RETVAL=$?; if [ $RETVAL -ne 0 ]; then exit $RETVAL; fi; done - name: Format uses: php-actions/composer@v5 @@ -58,9 +61,6 @@ jobs: php_version: ${{ matrix.php-versions }} version: 1 - - name: PHP syntax check - run: for f in $(find . -name '*.php'); do php -l $f; RETVAL=$?; if [ $RETVAL -ne 0 ]; then exit $RETVAL; fi; done - - name: Run test suite uses: php-actions/composer@v5 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c9c25a3..f1a0c38d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,13 +18,6 @@ jobs: version: 1 php_version: 7.4 - - name: Remove intentional crash test in dependency - uses: php-actions/composer@v5 - with: - command: run-script clean-crash-test - version: 1 - php_version: 7.4 - - name: WordPress Plugin Deploy id: deploy uses: 10up/action-wordpress-plugin-deploy@stable