Skip to content

Commit 6e8adf0

Browse files
committed
removed php matrix for unit tests
1 parent ce21b5d commit 6e8adf0

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/unit-test.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,24 @@ on:
1111
jobs:
1212
tests:
1313
runs-on: ubuntu-latest
14-
name: "Running on PHP ${{ matrix.php-version }}"
15-
strategy:
16-
fail-fast: false
17-
matrix:
18-
php-version: ['8.0', '8.1', '8.2']
14+
name: "Running on PHP 8.2"
1915

2016
steps:
2117
- uses: actions/checkout@v2
2218
- name: Cache Composer dependencies
2319
uses: actions/cache@v2
2420
with:
2521
path: /tmp/composer-cache
26-
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
22+
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
2723
- uses: php-actions/composer@v6
2824
with:
2925
progress: yes
30-
php_version: ${{ matrix.php-version }}
26+
php_version: 8.2
3127
version: 2
3228
- uses: php-actions/phpunit@v3
3329
with:
3430
configuration: phpunit.xml.dist
35-
php_version: ${{ matrix.php-version }}
31+
php_version: 8.2
3632
memory_limit: 1024M
3733
version: 9
3834
testsuite: Unit

0 commit comments

Comments
 (0)