Skip to content

Commit bc894fb

Browse files
authored
Merge pull request #70 from greg0ire/fix-comparison
Fix version checking
2 parents 4671c81 + b41495f commit bc894fb

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/continuous-integration-symfony-unstable.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,7 @@ jobs:
7676

7777
- name: "Check PHP configuration"
7878
run: >
79-
if vendor/bin/phpunit --atleast-version 12.3.1 > /dev/null ||
80-
vendor/bin/phpunit --atleast-version 11.5.29 > /dev/null ||
81-
vendor/bin/phpunit --atleast-version 10.5.49 > /dev/null; then
79+
if vendor/bin/phpunit --atleast-version 10.0.0; then
8280
vendor/bin/phpunit --check-php-configuration;
8381
fi
8482

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,7 @@ jobs:
7373

7474
- name: "Check PHP configuration"
7575
run: >
76-
if vendor/bin/phpunit --atleast-version 12.3.1 > /dev/null ||
77-
vendor/bin/phpunit --atleast-version 11.5.29 > /dev/null ||
78-
vendor/bin/phpunit --atleast-version 10.5.49 > /dev/null; then
76+
if vendor/bin/phpunit --atleast-version 10.0.0 > /dev/null; then
7977
vendor/bin/phpunit --check-php-configuration;
8078
fi
8179

0 commit comments

Comments
 (0)