We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10a6494 commit 19eb914Copy full SHA for 19eb914
1 file changed
.github/workflows/php.yml
@@ -11,7 +11,7 @@ jobs:
11
runs-on: ${{ matrix.operating-system }}
12
strategy:
13
matrix:
14
- operating-system: ['ubuntu-latest', 'windows-latest', 'macos-latest']
+ operating-system: ['ubuntu-latest']
15
php-versions: ['7.3', '7.4', '8.0']
16
phpunit-versions: ['latest']
17
include:
@@ -30,3 +30,10 @@ jobs:
30
ini-values: post_max_size=256M, max_execution_time=180
31
coverage: none
32
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