Merge pull request #693 from sandervanhooft/idempotency_tweaks #1412
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: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php: [7.2, 7.3, 7.4, 8.0, 8.1, 8.2] | |
name: PHP - ${{ matrix.php }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
run: | | |
composer update --prefer-dist --no-interaction --no-progress | |
- name: PHPStan | |
if: ${{ matrix.php >= 7.3 }} | |
run: | | |
composer require "phpstan/phpstan:1.9.2" | |
vendor/bin/phpstan analyse --no-progress | |
- name: Execute tests | |
run: vendor/bin/phpunit --verbose |