Skip to content

Commit

Permalink
.github/workflows/test.yml: add phpstan and ask phpunit to display wa…
Browse files Browse the repository at this point in the history
…rnings and deprecations
  • Loading branch information
zozlak committed Sep 26, 2024
1 parent f212064 commit be90540
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,28 @@ jobs:
- name: test
run: |
mkdir -p build/logs
XDEBUG_MODE=coverage ./vendor/bin/phpunit
XDEBUG_MODE=coverage ./vendor/bin/phpunit --display-deprecations --display-phpunit-deprecations --display-notices --display-warnings
- name: coveralls
run: |
export COVERALLS_RUN_LOCALLY=1
export COVERALLS_REPO_TOKEN=${{ secrets.coverallsToken }}
rm -fR composer.json composer.lock vendor
composer require php-coveralls/php-coveralls
php vendor/bin/php-coveralls -v
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.4
- uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: composer
run: composer update
- name: phpstan
run: vendor/bin/phpstan analyse -l 8 src tests || true

0 comments on commit be90540

Please sign in to comment.