-
Notifications
You must be signed in to change notification settings - Fork 7
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 #10 from gurman/update_to_symfony6
Update to symfony6
- Loading branch information
Showing
17 changed files
with
2,814 additions
and
1,640 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- php: '8.0' | ||
symfony: '5.4' | ||
- php: '8.0' | ||
symfony: '6.0' | ||
name: PHP ${{ matrix.version.php }} Symfony ${{ matrix.version.symfony }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.version.php }} | ||
tools: phpunit-bridge, flex | ||
extensions: pdo_sqlite, redis | ||
coverage: none | ||
- run: | | ||
composer config extra.symfony.require ${{ matrix.version.symfony }} | ||
composer update | ||
- run: vendor/bin/php-cs-fixer fix --dry-run --diff | ||
- run: tests/console cache:clear | ||
- run: vendor/bin/phpstan analyse | ||
- run: vendor/bin/phpunit | ||
env: | ||
SYMFONY_DEPRECATIONS_HELPER: 'disabled=1' |
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,6 +1,6 @@ | ||
/vendor/ | ||
/tests/cache/ | ||
/tests/logs/ | ||
/.php_cs.cache | ||
/var | ||
/.phpunit.result.cache | ||
/.php-cs-fixer.cache |
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 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
Oops, something went wrong.