Merge pull request #115 from phpbb/release/3.3.13-RC1 #4
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: Test Area51 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test-area51: | |
strategy: | |
matrix: | |
include: | |
- php: '8.1' | |
- php: '8.2' | |
- php: '8.3' | |
name: Test Area51 - ${{ matrix.php }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 100 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, intl, gd, exif, iconv | |
coverage: none | |
- name: Setup environment for dev-hooks | |
env: | |
PHP_VERSION: ${{ matrix.php }} | |
run: | | |
php composer.phar install --no-interaction | |
- name: Run unit tests | |
run: | | |
php bin/phpunit --verbose --stop-on-error |