Skip to content

Php attribute schema #43

Php attribute schema

Php attribute schema #43

Workflow file for this run

name: PHPUnit Tests
on:
pull_request:
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install Composer Dependencies
run: composer install
- name: Run fixer
run: ./vendor/bin/php-cs-fixer check
phpstan:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install Composer Dependencies
run: composer install
- name: Run phpstan
run: ./vendor/bin/phpstan analyse src tests --level max