mirror of
https://github.com/dg/dibi.git
synced 2025-08-29 00:39:50 +02:00
22 lines
533 B
YAML
22 lines
533 B
YAML
name: Static Analysis (only informative)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
phpstan:
|
|
name: PHPStan
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.0
|
|
coverage: none
|
|
|
|
- run: composer install --no-progress --prefer-dist
|
|
- run: composer phpstan -- --no-progress
|
|
continue-on-error: true # is only informative
|