Reduce errors detected by PHPStan #160
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: [ 'master', 'main' ] | |
workflow_dispatch: | |
schedule: | |
- cron: '0 9 15 * *' | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
env: | |
PHP_EXTENSIONS: mbstring, json, bcmath, zip, pdo, pdo_mysql, pdo_pgsql, pdo_sqlite, exif, gd, ldap, fileinfo | |
strategy: | |
matrix: | |
# https://github.com/shivammathur/setup-php?tab=readme-ov-file#cloud-osplatform-support | |
os: [ 'ubuntu-22.04', 'windows-2022', 'macos-14' ] | |
php-version: [ '8.1', '8.2', '8.3', '8.4' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP with extensions | |
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: none | |
extensions: ${{ env.PHP_EXTENSIONS }} | |
- name: Prepare environment | |
run: composer update | |
- name: Run testing | |
run: | | |
php -v | |
composer test |