Add phpstan typing annotations #99
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: PHP ${{ matrix.php-version }} (${{ matrix.experimental && 'experimental' || 'full support' }}) | |
runs-on: ubuntu-18.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- 7.1 | |
- 7.2 | |
- 7.3 | |
- 7.4 | |
- 8.0 | |
experimental: [false] | |
include: | |
- php-version: 8.1 | |
experimental: true | |
continue-on-error: ${{ matrix.experimental }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install PHP with extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: pcov | |
tools: composer:v2 | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v1 | |
with: | |
composer-options: --prefer-dist | |
continue-on-error: ${{ matrix.experimental }} | |
- name: Setup PCOV | |
run: | | |
composer require pcov/clobber | |
vendor/bin/pcov clobber | |
continue-on-error: true | |
- name: Run Tests | |
run: composer tests | |
continue-on-error: ${{ matrix.experimental }} | |
- name: Check coding style | |
run: composer coding-style | |
continue-on-error: ${{ matrix.experimental }} |