diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 24e9a38..748991b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.0, 7.4, 7.3] + php: [8.1, 8.0, 7.4] dependency-version: [prefer-lowest, prefer-stable] os: [ubuntu-latest, windows-latest] @@ -34,7 +34,7 @@ jobs: run: vendor/bin/phpunit - name: PHP CS Fixer - uses: StephaneBour/actions-php-cs-fixer@1.0 if: matrix.os != 'windows-latest' - with: - dir: './src'
\ No newline at end of file + run: | + vendor/bin/php-cs-fixer fix --dry-run -v ./src + vendor/bin/php-cs-fixer fix --dry-run -v ./tests |