Skip to content

Add basic support for components and livewire attribute validation (#98) #208

Add basic support for components and livewire attribute validation (#98)

Add basic support for components and livewire attribute validation (#98) #208

Workflow file for this run

name: Code Analysis
on:
pull_request: null
push:
# Prevent duplicating jobs on PR-s from local branches
branches:
- "main"
jobs:
code_analysis:
strategy:
fail-fast: false
matrix:
actions:
-
name: 'ECS'
run: 'vendor/bin/ecs'
-
name: 'PHPStan'
run: 'vendor/bin/phpstan'
-
name: 'Unit Tests'
run: 'vendor/bin/phpunit'
-
name: 'Check Commented Code'
run: vendor/bin/easy-ci check-commented-code src tests --ansi
-
name: 'Check Active Classes'
run: vendor/bin/class-leak check src --ansi --skip-type=TomasVotruba\\Bladestan\\ErrorReporting\\PHPStan\\ErrorFormatter\\BladeTemplateErrorFormatter
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# see https://github.com/shivammathur/setup-php
- uses: shivammathur/setup-php@v2
with:
php-version: 8.1
# needed by phpunit
extensions: mbstring
# to disable xdebug
coverage: none
# composer install cache - https://github.com/ramsey/composer-install
- uses: "ramsey/composer-install@v2"
- run: ${{ matrix.actions.run }}