Merge pull request #614 from singinwhale/master #201
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"] | |
composer-flags: [ "" ] | |
include: | |
- php: 7.2 | |
composer-flags: "--prefer-lowest" | |
- php: '8.3' | |
composer-flags: "--ignore-platform-req=php+" # TODO move that to a normal job without flag once phpspec supports it | |
steps: | |
- uses: actions/checkout@v3 | |
- 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@v3 | |
- 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 |