Skip to content

ci: fix not running tests #21

ci: fix not running tests

ci: fix not running tests #21

Workflow file for this run

name: Checks
on:
pull_request:
push:
branches:
- "master"
- "v[0-9]"
jobs:
checks:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
steps:
-
name: Checkout code
uses: actions/checkout@v4
-
name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
-
name: Install dependencies
run: composer install --no-progress --prefer-dist --no-interaction
-
name: Run checks
run: composer check