Skip to content

Commit d230ce6

Browse files
committed
Fix matrix
1 parent 2af04c6 commit d230ce6

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/run-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2
2222
with:
23-
php-version: 8.1
23+
php-version: 8.4
2424
extensions: mbstring
2525
coverage: pcov
2626

.github/workflows/run-matcher.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup PHP
2020
uses: shivammathur/setup-php@v2
2121
with:
22-
php-version: 8.1
22+
php-version: 8.4
2323
extensions: mbstring
2424

2525
- name: Configure matchers

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
php: [8.1, 8.2, 8.3, 8.4, 8.5]
15+
php: [8.2, 8.3, 8.4, 8.5]
1616
dependency-version: [prefer-stable]
17+
brick: [^0.9.3, ^0.10 , ^0.11, ^0.12, ^0.13, ^0.14]
1718

1819
name: PHP${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
1920

@@ -32,6 +33,7 @@ jobs:
3233

3334
- name: Install dependencies
3435
run: |
36+
composer require "brick/math:${{ matrix.brick }}" --no-update
3537
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest --with-all-dependencies
3638
3739
- name: Execute Unit Tests

0 commit comments

Comments
 (0)