Skip to content

Remove bootstrap.php #42

Remove bootstrap.php

Remove bootstrap.php #42

Workflow file for this run

name: CI
permissions:
contents: read
on: [push]
jobs:
php:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.1', '8.2', '8.3']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}

Check failure on line 19 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: Run tests
run: composer run phpunit
- name: Run phpstan
run: composer run phpstan