Skip to content

Commit a167d85

Browse files
committed
:octocat: forget lowest dependencies
1 parent 9c5ca71 commit a167d85

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ jobs:
4242

4343
runs-on: ${{ matrix.os }}
4444

45-
# env:
46-
# PHP_EXTENSIONS: mbstring
47-
# PHP_INI_VALUES:
48-
4945
strategy:
5046
fail-fast: false
5147
matrix:
@@ -55,9 +51,6 @@ jobs:
5551
php-version:
5652
- "7.4"
5753
- "8.0"
58-
dependencies:
59-
- lowest
60-
- highest
6154

6255
steps:
6356
- name: "Configure git to avoid issues with line endings"
@@ -72,8 +65,8 @@ jobs:
7265
with:
7366
php-version: ${{ matrix.php-version }}
7467
coverage: pcov
75-
# extensions: ${{ env.PHP_EXTENSIONS }}
76-
# ini-values: ${{ env.PHP_INI_VALUES }}
68+
# extensions:
69+
# ini-values:
7770

7871
- name: "Determine composer cache directory on Linux"
7972
if: matrix.os == 'ubuntu-latest'
@@ -90,12 +83,7 @@ jobs:
9083
key: php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}
9184
restore-keys: php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-
9285

93-
- name: "Install lowest dependencies with composer"
94-
if: matrix.dependencies == 'lowest'
95-
run: composer update --no-ansi --no-interaction --no-progress --no-suggest --prefer-lowest
96-
97-
- name: "Install highest dependencies with composer"
98-
if: matrix.dependencies == 'highest'
86+
- name: "Install dependencies with composer"
9987
run: composer update --no-ansi --no-interaction --no-progress --no-suggest
10088

10189
- name: "Run tests with phpunit"

0 commit comments

Comments
 (0)