Skip to content

Make the toolchain work, and the docs match it #2

Make the toolchain work, and the docs match it

Make the toolchain work, and the docs match it #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# 8.0 is this package's floor, not 7.4: the generated stubs use constructor property
# promotion, which 7.4 cannot parse. composer.json said >=7.4 and was wrong.
php: ['8.0', '8.3']
steps:
- uses: actions/checkout@v5
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- uses: ramsey/composer-install@v3
- run: composer cs
- run: composer analyze
- run: composer test