Skip to content

Commit c07c650

Browse files
committed
Fix CI
1 parent a7114bd commit c07c650

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/static.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@ on: ['push', 'pull_request']
55
jobs:
66
static:
77
name: Static Tests
8-
98
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
dependency-version: [prefer-lowest, prefer-stable]
139

1410
steps:
1511
- name: Checkout

.github/workflows/tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ jobs:
99
matrix:
1010
os: [ubuntu-latest] # (macos-latest, windows-latest) 2.x-dev is under development
1111
php: ['8.1', '8.2']
12-
dependency-version: [prefer-lowest, prefer-stable]
1312
parallel: ['', '--parallel']
1413

15-
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} - ${{ matrix.parallel }}
14+
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.parallel }}
1615

1716
steps:
1817
- name: Checkout
@@ -30,7 +29,7 @@ jobs:
3029
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
3130
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3231
- name: Install PHP dependencies
33-
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
32+
run: composer update --prefer-stable --no-interaction --no-progress --ansi
3433

3534
- name: Unit Tests
3635
run: composer test:unit

0 commit comments

Comments
 (0)