Increase Scrutinizer CI timeout to 10m #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Tests" | |
on: | |
pull_request: | |
push: | |
jobs: | |
phpunit: | |
name: PHPUnit Tests | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
dependency-versions: | |
- "highest" | |
include: | |
- php: "7.4" | |
dependency-versions: "lowest" | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Install Dependencies | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "${{ matrix.dependency-versions }}" | |
composer-options: "${{ matrix.composer-options }}" | |
- name: Run PHPUnit | |
run: "vendor/bin/phpunit --coverage-clover=coverage.clover" | |
- name: Upload Coverage | |
if: github.repository_owner == 'jmikola' | |
run: "vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover" |