Skip to content

~ Missed another one #25

~ Missed another one

~ Missed another one #25

name: Static Analysis
on:
push:
pull_request:
jobs:
static:
name: Static Analysis
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: ['8.1', '8.2', '8.3']
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, dom, curl, libxml, mbstring
coverage: none
- name: Install Dependencies
run: composer update --prefer-stable --no-interaction --no-progress --ansi
- name: Run Static Analysis
run: composer test:static