Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run PHPStan with PHP 8.4 in CI jobs #105

Merged
merged 1 commit into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
with:
php-version: '8.3'
php-version: '8.4'

- name: Install PHPStan
run: composer require --dev phpstan/phpstan
- name: Remove phpDocumentor temporarily and Install PHPStan
run: composer remove --dev --no-update phpdocumentor/phpdocumentor; composer update

- name: Restore cached baseline for PHPStan
id: cache-baseline-restore
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ FMDataAPI has "composer.json," so you can add your composer.json file in your pr
- test
- Some files for unit testing.
- .github, docker-compose.yml
- Files for GitHub Actions to run CI Jobs.
- Files for GitHub Actions to run CI jobs.

## Licence

Expand Down