Skip to content

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

Make the toolchain work, and the docs match it

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

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:
# The floor this package declares, and current stable. Consumers sit on both.
php: ['7.4', '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