Remove cruft from the GitHub actions file #19
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 workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Symfony | |
on: | |
push: | |
branches: [ "v4" ] | |
pull_request: | |
branches: [ "v4" ] | |
env: | |
PHPUNIT_FLAGS: "-v --testdox" | |
SYMFONY_PHPUNIT_DIR: "$HOME/symfony-bridge/.phpunit" | |
SYMFONY_DEPRECATIONS_HELPER: "max[total]=999999&max[direct]=0" | |
COMMON_DEPENDENCIES: "symfony/http-client:^5" | |
permissions: | |
contents: read | |
jobs: | |
symfony-tests: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ ubuntu-latest ] | |
php: [ '8.0', '8.1', '8.2', '8.3' ] | |
symfony: [ '6.4', '7.*' ] | |
stability: [ stable ] | |
include: | |
- symfony: '6.4' | |
dependencies: "symfony/http-client:^6 symfony/browser-kit:^6 symfony/css-selector:^6 symfony/framework-bundle:^6 symfony/twig-bundle:^6 symfony/panther:^2" | |
- symfony: '7.*' | |
dependencies: "symfony/http-client:^7 symfony/browser-kit:^7 symfony/css-selector:^7 symfony/framework-bundle:^7 symfony/twig-bundle:^7 symfony/panther:^2" | |
exclude: | |
- php: '8.0' | |
symfony: '7.*' | |
- php: '8.1' | |
symfony: '7.*' | |
steps: | |
# To automatically get bug fixes and new Php versions for shivammathur/setup-php, | |
# change this to (see https://github.com/shivammathur/setup-php#bookmark-versioning): | |
# uses: shivammathur/setup-php@v2 | |
- uses: shivammathur/setup-php@2cb9b829437ee246e9b3cac53555a39208ca6d28 | |
with: | |
php-version: ${{ matrix.php }} | |
- uses: actions/checkout@v3 | |
- name: Fetch geckodriver | |
run: wget https://github.com/mozilla/geckodriver/releases/download/v0.29.0/geckodriver-v0.29.0-linux64.tar.gz | |
- name: Prepare geckodriver directory | |
run: mkdir geckodriver | |
- name: Decompress geckodriver | |
run: tar -xzf geckodriver-v0.29.0-linux64.tar.gz -C geckodriver | |
- name: Set minimum stability | |
run: composer config minimum-stability ${{ matrix.stability }} | |
- name: Allow symfony/flex to do whatever pleases it | |
run: composer global config --no-interaction --no-plugins allow-plugins.symfony/flex true | |
- name: Select the correct Symfony distribution | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony }} | |
run: composer config --no-interaction --no-plugins extra.symfony.require ${{ matrix.symfony }} | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: Install symfony/flex separately first | |
run: composer global require symfony/flex --prefer-dist --no-interaction | |
- name: Install Project Dependencies | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony }} | |
run: composer update --prefer-dist --no-interaction | |
- name: Install Extra Dependencies | |
run: composer require --no-interaction --prefer-dist --with-all-dependencies ${{ matrix.dependencies }} | |
- name: Validate the whole installation | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony }} | |
run: composer validate --strict --no-check-lock | |
- name: Execute tests (Unit and Feature tests) via PHPUnit | |
run: PATH="$PATH:$PWD/geckodriver" ./vendor/phpunit/phpunit/phpunit ${{ env.PHPUNIT_FLAGS }} |