fix: block compilation #37
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, pull_request] | |
jobs: | |
run: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest] | |
php-versions: [8.1, 8.2, 8.3, 8.4] | |
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, pdo, pdo_mysql, intl, zip, xml, json, pdo_sqlite, openssl | |
coverage: none | |
- name: Install dependencies for PHP | |
run: composer update --prefer-dist --no-progress | |
- name: Code standard checking | |
run: composer phpcbf | |
- name: Run test suite | |
run: cp phpunit.dist.xml phpunit.xml && vendor/bin/phpunit |