Skip to content

Disable runs for push #93

Disable runs for push

Disable runs for push #93

Workflow file for this run

name: "Static code analysis"
on:
pull_request:
jobs:
static-code-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: "PHPStan"
uses: docker://jakzal/phpqa:php8.5
with:
args: phpstan analyze src/ -l 1
- name: "PHP-CS-Fixer"
uses: docker://jakzal/phpqa:php8.5
with:
args: php-cs-fixer fix --dry-run --allow-risky=yes --no-interaction --ansi
- name: "Deptrac"
uses: docker://jakzal/phpqa:php8.5
with:
args: deptrac --config-file=depfile.yaml --no-interaction --ansi