Skip to content

Cosmetic

Cosmetic #81

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
tests:
runs-on: ubuntu-24.04
strategy:
matrix:
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 5
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:2
coverage: none
- run: composer install --no-progress
- run: composer phpstan
- run: composer phpunit
tests_lowest_dependencies:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 5
- uses: shivammathur/setup-php@v2
with:
php-version: '7.1'
tools: composer:2
coverage: none
- run: composer update --no-progress --prefer-lowest
- run: composer phpstan
- run: composer phpunit