diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-04 21:53:44 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-04 21:53:44 +0000 |
| commit | 4f2423198a7036c7cf634b11256048c507cbfa91 (patch) | |
| tree | 36306ee60ab610ba3de30f7486e3f7481b702160 | |
| parent | 664f37ae71eba123a5ee5b1ad3f4a54329b8f484 (diff) | |
Add a workflow job for PHPUnit.
| -rw-r--r-- | .github/workflows/code-quality.yml | 40 | ||||
| -rw-r--r-- | .github/workflows/php-code-quality.yml | 67 |
2 files changed, 67 insertions, 40 deletions
diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml deleted file mode 100644 index 8c5c0a623..000000000 --- a/.github/workflows/code-quality.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Code Quality - -on: - pull_request: - paths: - - '**.php' - - 'phpstan.neon' - push: - branches: - - main - paths: - - '**.php' - - 'phpstan.neon' - # Allow manual triggering - workflow_dispatch: - -env: - fail-fast: true - -permissions: - contents: read - -jobs: - static-analysis: - name: PHPStan - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v5 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: '8.4' - coverage: none - tools: none - - - name: Run PHPStan - run: vendor/bin/phpstan analyze --no-progress diff --git a/.github/workflows/php-code-quality.yml b/.github/workflows/php-code-quality.yml new file mode 100644 index 000000000..9a4618132 --- /dev/null +++ b/.github/workflows/php-code-quality.yml @@ -0,0 +1,67 @@ +name: PHP Code Quality + +on: + pull_request: + paths: + - '**.php' + - 'phpstan.neon' + push: + branches: + - main + paths: + - '**.php' + - 'phpstan.neon' + # Allow manual triggering + workflow_dispatch: + +env: + fail-fast: true + +permissions: + contents: read + +jobs: + phpstan: + name: PHPStan + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v5 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.4' + coverage: none + tools: none + + - name: Run PHPStan + run: vendor/bin/phpstan analyze --no-progress + + phpunit: + name: PHPUnit + runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} + strategy: + fail-fast: false + matrix: + php: ['8.2', '8.3', '8.4'] + experimental: [false] + include: + - php: '8.5' + experimental: true + + steps: + - name: Checkout code + uses: actions/checkout@v5 + + - name: Setup PHP ${{ matrix.php }} + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + coverage: none + tools: none + + - name: Run PHPUnit + run: vendor/bin/phpunit --exclude integration --coverage-filter classes --coverage-filter include |