-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6721 from doctrine/3.9.x
Merge 3.9.x up into 3.10.x
- Loading branch information
Showing
129 changed files
with
763 additions
and
1,294 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,6 @@ on: | |
- .github/workflows/static-analysis.yml | ||
- composer.* | ||
- phpstan.neon.dist | ||
- psalm.xml.dist | ||
- psalm-strict.xml | ||
- src/** | ||
- static-analysis/** | ||
- tests/** | ||
|
@@ -20,66 +18,11 @@ on: | |
- .github/workflows/static-analysis.yml | ||
- composer.* | ||
- phpstan.neon.dist | ||
- psalm.xml.dist | ||
- psalm-strict.xml | ||
- src/** | ||
- static-analysis/** | ||
- tests/** | ||
|
||
jobs: | ||
static-analysis-phpstan: | ||
name: "Static Analysis with PHPStan" | ||
runs-on: "ubuntu-22.04" | ||
|
||
strategy: | ||
matrix: | ||
php-version: | ||
- "8.4" | ||
|
||
steps: | ||
- name: "Checkout code" | ||
uses: "actions/checkout@v4" | ||
|
||
- name: "Install PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
coverage: "none" | ||
php-version: "${{ matrix.php-version }}" | ||
tools: "cs2pr" | ||
|
||
- name: "Install dependencies with Composer" | ||
uses: "ramsey/composer-install@v3" | ||
with: | ||
composer-options: "--ignore-platform-req=php+" | ||
|
||
- name: "Run a static analysis with phpstan/phpstan" | ||
run: "vendor/bin/phpstan --error-format=checkstyle | cs2pr" | ||
|
||
static-analysis-psalm: | ||
name: "Static Analysis with Psalm" | ||
runs-on: "ubuntu-22.04" | ||
|
||
strategy: | ||
matrix: | ||
php-version: | ||
- "8.3" | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
coverage: none | ||
php-version: ${{ matrix.php-version }} | ||
tools: cs2pr | ||
|
||
- name: Install dependencies with Composer | ||
uses: ramsey/composer-install@v3 | ||
|
||
- name: Run static analysis with Vimeo Psalm | ||
run: vendor/bin/psalm --shepherd | ||
|
||
- name: Run type inference tests with Vimeo Psalm | ||
run: vendor/bin/psalm --config=psalm-strict.xml --shepherd | ||
name: "Static Analysis" | ||
uses: "doctrine/.github/.github/workflows/[email protected]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,3 @@ vendor/ | |
/phpunit.xml | ||
/.phpcs-cache | ||
/phpstan.neon | ||
/psalm.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.