-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a9b22c4
commit 5c17f56
Showing
6 changed files
with
560 additions
and
366 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,15 +50,21 @@ jobs: | |
- name: Install PHP | ||
uses: shivammathur/[email protected] | ||
with: | ||
php-version: '8.3' | ||
coverage: none | ||
extensions: mbstring | ||
php-version: "7.4" | ||
|
||
- name: Install dependencies with composer | ||
run: "composer update --no-interaction --no-progress && composer i --working-dir=ci" | ||
- name: Install dependencies | ||
run: >- | ||
composer install | ||
- name: Run vimeo/psalm | ||
run: "ci/vendor/bin/psalm --threads=4" | ||
- name: Install tools | ||
run: >- | ||
composer run install-tools | ||
- name: Run static analysis | ||
run: >- | ||
composer run static-analysis | ||
roave-bc-check: | ||
name: Roave BC Check | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,17 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<psalm | ||
totallyTyped="true" | ||
errorLevel="8" | ||
resolveFromConfigFile="true" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="https://getpsalm.org/schema/config" | ||
xsi:schemaLocation="https://getpsalm.org/schema/config ci/vendor/vimeo/psalm/config.xsd" | ||
phpVersion="7.3" | ||
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd" | ||
> | ||
<projectFiles> | ||
<directory name="bin" /> | ||
<directory name="bin"/> | ||
<directory name="tests/static-analysis" /> | ||
<ignoreFiles> | ||
<directory name="ci"/> | ||
</ignoreFiles> | ||
</projectFiles> | ||
|
||
</psalm> |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"require-dev": { | ||
"vimeo/psalm": "^4.6.1" | ||
} | ||
} |
Oops, something went wrong.