Skip to content

Base CI

Base CI #1

Workflow file for this run

name: CI
on:
- pull_request
- push
jobs:
tests:
name: "PHP ${{matrix.php}}"
runs-on: 'ubuntu-24.04;
strategy:
fail-fast: false
matrix:
include:
- php: '8.1'
- php: '8.2'

Check failure on line 16 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 16
- php: '8.3'
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: PHP setup
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: zend.assertions=1, error_reporting=-1, display_errors=On, log_errors_max_len=0
- name: 'Update composer dependencies'
run: composer update -o --no-interaction --no-progress
- name: Run check
run: php vendor/bin/phpunit -v