Merge pull request #628 from jrfnl/feature/fix-reflection-docblock-de… #226
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: Build | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
release: | |
types: [created] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: Build and test | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] | |
composer-flags: [ "" ] | |
include: | |
- php: 7.2 | |
composer-flags: "--prefer-lowest" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
coverage: none | |
- name: Install dependencies | |
run: COMPOSER_ROOT_VERSION=dev-master composer update ${{ matrix.composer-flags }} | |
id: end-of-setup | |
- name: Run tests (phpspec) | |
run: ./vendor/bin/phpspec run --format=dot | |
if: always() && steps.end-of-setup.outcome == 'success' | |
- name: Run tests (phpunit) | |
run: ./vendor/bin/phpunit | |
if: always() && steps.end-of-setup.outcome == 'success' | |
phpstan: | |
runs-on: ubuntu-latest | |
name: Static analysis | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.2" | |
coverage: none | |
- name: Install dependencies | |
run: COMPOSER_ROOT_VERSION=dev-master composer update | |
- run: ./vendor/bin/phpstan |