Skip to content

~ Can't test 8.0 w/ pint #3

~ Can't test 8.0 w/ pint

~ Can't test 8.0 w/ pint #3

name: Static Analysis
on:
push:
pull_request:
jobs:
static:
name: Static Analysis
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: ['8.2']
steps:
- name: Checkout Code
uses: actions/checkout@v3
- 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