Skip to content

Bugfix syntax errors #2

Bugfix syntax errors

Bugfix syntax errors #2

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.2'
- '8.3'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint PHP
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint
code-quality:
name: Code quality
runs-on: ubuntu-latest
strategy:
matrix:
php:
- '8.2'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install testing system
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerUpdate
- name: CGL
run: Build/Scripts/runTests.sh -n -p ${{ matrix.php }} -s cgl
- name: phpstan
run: Build/Scripts/runTests.sh -n -p ${{ matrix.php }} -s phpstan