Skip to content

Delete .cursorindexingignore #15

Delete .cursorindexingignore

Delete .cursorindexingignore #15

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.0', '8.1', '8.2', '8.3']
steps:
- uses: actions/checkout@v4
- name: Set up PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: curl, json, mbstring
coverage: xdebug
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHP CS Fixer
run: vendor/bin/php-cs-fixer fix --dry-run --diff || true
- name: Run PHPStan
run: vendor/bin/phpstan analyse || true
- name: Run tests
run: vendor/bin/phpunit || true