Skip to content

Commit

Permalink
Force update of deps in SA CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean85 committed Feb 6, 2024
1 parent 72f9751 commit 2c48e55
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,15 @@ jobs:
fail_ci_if_error: true
Rector:
runs-on: ubuntu-latest
name: Code style
name: Rector
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
- uses: ramsey/composer-install@v2
with:
dependency-versions: highest
- run: vendor/bin/rector --ansi --dry-run
PHP-CS-Fixer:
runs-on: ubuntu-latest
Expand All @@ -81,6 +83,8 @@ jobs:
with:
php-version: '8.1'
- uses: ramsey/composer-install@v2
with:
dependency-versions: highest
- run: vendor/bin/php-cs-fixer fix --ansi --verbose --dry-run
PHPStan:
runs-on: ubuntu-latest
Expand All @@ -91,6 +95,8 @@ jobs:
with:
php-version: '8.1'
- uses: ramsey/composer-install@v2
with:
dependency-versions: highest
- run: vendor/bin/phpstan analyse --ansi
Psalm:
runs-on: ubuntu-latest
Expand All @@ -101,4 +107,6 @@ jobs:
with:
php-version: '8.1'
- uses: ramsey/composer-install@v2
with:
dependency-versions: highest
- run: vendor/bin/psalm

0 comments on commit 2c48e55

Please sign in to comment.