Skip to content

Allow multiple CCs and BCCs #118

Allow multiple CCs and BCCs

Allow multiple CCs and BCCs #118

Workflow file for this run

name: Static analysis
on:
push:
branches:
- master
pull_request:
jobs:
phpstan:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2]
name: PHP ${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install dependencies
run: composer install --no-interaction
- name: Run PHPStan
run: ./vendor/bin/phpstan --error-format=github