Skip to content

Commit 19eb914

Browse files
Add update and test
1 parent 10a6494 commit 19eb914

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/php.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.operating-system }}
1212
strategy:
1313
matrix:
14-
operating-system: ['ubuntu-latest', 'windows-latest', 'macos-latest']
14+
operating-system: ['ubuntu-latest']
1515
php-versions: ['7.3', '7.4', '8.0']
1616
phpunit-versions: ['latest']
1717
include:
@@ -30,3 +30,10 @@ jobs:
3030
ini-values: post_max_size=256M, max_execution_time=180
3131
coverage: none
3232
tools: php-cs-fixer, phpunit:${{ matrix.phpunit-versions }}
33+
34+
- name: Install dependencies
35+
if: steps.composer-cache.outputs.cache-hit != 'true'
36+
run: composer update --prefer-dist --no-progress
37+
38+
- name: Run test suite
39+
run: composer test

0 commit comments

Comments
 (0)