Skip to content

Commit

Permalink
on Test
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jan 29, 2025
1 parent c104be1 commit c6bc9fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/code_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.2', '8.3', '8.4']
actions:
-
name: 'Active Classes'
run: vendor/bin/class-leak check config src rules --ansi --skip-suffix "Rector" --skip-type "\Rector\Set\Contract\SetProviderInterface"

name: ${{ matrix.actions.name }} (${{ matrix.php-versions }})
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
timeout-minutes: 10

Expand All @@ -31,7 +30,7 @@ jobs:
-
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
php-version: 8.2
coverage: none

- uses: "ramsey/composer-install@v2"
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ env:

jobs:
tests:
strategy:
fail-fast: false
matrix:
php-versions: ['8.2', '8.3', '8.4']
runs-on: ubuntu-latest

name: Tests
Expand All @@ -21,7 +25,7 @@ jobs:
-
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: ${{ matrix.php-versions }}
coverage: none

- uses: "ramsey/composer-install@v1"
Expand Down

0 comments on commit c6bc9fd

Please sign in to comment.