-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Compatibility with nikic/php-parser v5 (#36)
* Compatibility with nikic/php-parser v5 * feat(deps): bump symfony property info version to make it work with readonly --------- Co-authored-by: Joel Wurtz <[email protected]>
- Loading branch information
Showing
14 changed files
with
131 additions
and
39 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 |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
- name: checkout | ||
uses: actions/checkout@master | ||
- name: setup | ||
uses: shivammathur/setup-php@2.9.0 | ||
uses: shivammathur/setup-php@2.29.0 | ||
with: | ||
php-version: 8.2 | ||
coverage: none | ||
|
@@ -28,7 +28,7 @@ jobs: | |
path: ~/.composer/cache/ | ||
key: composer-${{ github.sha }} | ||
- name: setup | ||
uses: shivammathur/setup-php@2.9.0 | ||
uses: shivammathur/setup-php@2.29.0 | ||
with: | ||
php-version: 8.3 | ||
coverage: none | ||
|
@@ -58,7 +58,7 @@ jobs: | |
path: ~/.composer/cache/ | ||
key: composer-${{ github.sha }} | ||
- name: setup | ||
uses: shivammathur/setup-php@2.9.0 | ||
uses: shivammathur/setup-php@2.29.0 | ||
with: | ||
php-version: '${{ matrix.php-versions }}' | ||
coverage: none | ||
|
@@ -67,6 +67,27 @@ jobs: | |
run: composer update --prefer-stable | ||
- name: tests | ||
run: vendor/bin/phpunit | ||
tests-lowest: | ||
runs-on: ubuntu-latest | ||
name: tests-lowest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@master | ||
- name: cache-composer | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.composer/cache/ | ||
key: composer-${{ github.sha }} | ||
- name: setup | ||
uses: shivammathur/[email protected] | ||
with: | ||
php-version: 8.2 | ||
coverage: none | ||
extensions: mbstring, fileinfo, json, intl, dom | ||
- name: composer install | ||
run: composer update --prefer-stable --prefer-lowest | ||
- name: tests | ||
run: vendor/bin/phpunit | ||
check-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -78,7 +99,7 @@ jobs: | |
path: ~/.composer/cache/ | ||
key: composer-${{ github.sha }} | ||
- name: setup | ||
uses: shivammathur/setup-php@2.9.0 | ||
uses: shivammathur/setup-php@2.29.0 | ||
with: | ||
php-version: 8.3 | ||
coverage: none | ||
|
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
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
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
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
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
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.