Skip to content

Commit

Permalink
Merge pull request #347 from norkunas/ci
Browse files Browse the repository at this point in the history
Include PHP and Symfony version to CI job name
  • Loading branch information
norkunas committed Nov 3, 2023
2 parents 4e8af37 + 11754b7 commit 06c094c
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/ci.yml
Expand Up @@ -7,7 +7,7 @@ concurrency:

jobs:
phpstan:
name: "PHPStan"
name: PHPStan
runs-on: ubuntu-latest
env:
php-version: 8.2
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
run: vendor/bin/php-cs-fixer fix -v --dry-run --using-cache=no --format=checkstyle | cs2pr

phpunit:
name: "PHPUnit"
name: PHPUnit (PHP ${{ matrix.php }}) (Symfony ${{ matrix.sf_version }}) (${{ matrix.dependencies }})
runs-on: ubuntu-latest
strategy:
max-parallel: 10
Expand Down Expand Up @@ -103,18 +103,6 @@ jobs:
composer-options: "--optimize-autoloader"
dependency-versions: "${{ matrix.dependencies }}"

# - name: "Install Composer dependencies (default)"
# if: matrix.strategy != 'lowest'
# env:
# SYMFONY_REQUIRE: ${{ matrix.sf_version }}
# run: composer update --no-interaction --optimize-autoloader
#
# - name: "Install Composer dependencies (lowest)"
# if: matrix.strategy == 'lowest'
# env:
# SYMFONY_REQUIRE: ${{ matrix.sf_version }}
# run: composer update --no-interaction --prefer-stable --prefer-lowest --optimize-autoloader

- name: "Run tests"
env:
SYMFONY_DEPRECATIONS_HELPER: 'max[self]=3&max[indirect]=1'
Expand Down

0 comments on commit 06c094c

Please sign in to comment.