Skip to content

Commit

Permalink
GH Actions: don't use cs2pr in quicktest
Browse files Browse the repository at this point in the history
... as the `quicktest` workflow is run on `push` events, not on PRs, so displaying results in a PR is not relevant (and is done via the `test` workflow which _is_ run on `pull` events anyhow).
  • Loading branch information
jrfnl committed Apr 9, 2021
1 parent d710432 commit d4731ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/quicktest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ jobs:
php-version: ${{ matrix.php }}
ini-values: ${{ steps.set_ini.outputs.PHP_INI }}
coverage: none
tools: cs2pr

- name: Set PHPCS version
run: composer require squizlabs/php_codesniffer:"${{ matrix.phpcs_version }}" --no-update --no-scripts
Expand All @@ -65,7 +64,7 @@ jobs:

- name: Lint PHP files against parse errors
if: ${{ matrix.phpcs_version == 'dev-master' }}
run: composer lint-ci | cs2pr
run: composer lint-ci

- name: Run unit tests
run: composer run-tests

0 comments on commit d4731ef

Please sign in to comment.