Upgrade event dispatcher #3
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build-lowest-version: | |
name: Build lowest version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
coverage: none | |
extensions: mbstring, intl | |
tools: composer:v2 | |
- name: Setup Problem Matchers for PHPUnit | |
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Download dependencies | |
run: composer update --no-interaction --prefer-stable --prefer-lowest --prefer-dist | |
- name: Run tests | |
run: composer test | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 10 | |
matrix: | |
php: ['8.0', '8.1'] | |
steps: | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
extensions: mbstring, intl | |
tools: composer:v2 | |
- name: Setup Problem Matchers for PHPUnit | |
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Download dependencies | |
run: composer update --no-interaction --prefer-dist | |
- name: Run tests | |
run: composer test |