Skip to content

comparators

comparators #3

Workflow file for this run

name: CI
on: [ push ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ "8.3" ]
dependencies: [ "lowest", "highest" ]
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
- uses: ramsey/composer-install@v3
with:
dependency-versions: "${{ matrix.dependencies }}"
- run: vendor/bin/phpstan
- run: vendor/bin/pest