Test with PHP 8.2 and 8.3, update phpstan/phpstan #162
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: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ubuntu-latest] | |
php-versions: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] | |
dependency-versions: ["highest", "lowest"] | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: gmp | |
coverage: xdebug | |
#coverage: pcov | |
- name: Install and cache Composer dependencies | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: ${{ matrix.dependency-versions }} | |
- name: Run linter | |
run: make lint | |
- name: Run unit tests | |
run: make unit | |
- name: Run static analysis | |
run: make static | |
- name: Upload coverage | |
uses: codecov/codecov-action@v1 |