Skip to content

Commit

Permalink
Test suite updates and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
PHLAK committed Dec 11, 2024
1 parent 867ff1c commit 869d413
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/test-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ jobs:
name: Coding Standards
runs-on: 'ubuntu-latest'

env:
PHP_CS_FIXER_IGNORE_ENV: 1

steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand All @@ -17,7 +20,7 @@ jobs:
coverage: none

- name: Install PHP Dependencies
run: composer update
run: composer install --no-interaction --no-progress --no-scripts --prefer-dist

- name: Verify Coding Standards
run: vendor/bin/php-cs-fixer fix --diff --dry-run
Expand All @@ -37,7 +40,7 @@ jobs:
coverage: none

- name: Install PHP Dependencies
run: composer update
run: composer install --no-interaction --no-progress --no-scripts --prefer-dist

- name: Run Static Analysis
run: vendor/bin/phpstan analyze --no-progress
Expand All @@ -61,7 +64,7 @@ jobs:
coverage: xdebug

- name: Install PHP Dependencies
run: composer update
run: composer install --no-interaction --no-progress --no-scripts --prefer-dist

- name: Run Tests
run: vendor/bin/phpunit --coverage-text

0 comments on commit 869d413

Please sign in to comment.