Skip to content

chore: Use shared PHPStan Workflow #7

chore: Use shared PHPStan Workflow

chore: Use shared PHPStan Workflow #7

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
phpunit:
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
php: [ 8.3, 8.2, 8.1, 8.0 ]
stability: [ prefer-stable ]
name: PHPUnit - PHP ${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Composer install
run: composer install --no-interaction --no-ansi --no-progress
- name: Run PHPUnit
run: vendor/bin/phpunit