File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : CI
22on : ['push', 'pull_request']
33jobs :
4- phpstan :
5- name : PHP Static Analysis
6- runs-on : ubuntu-latest
7- steps :
8- - uses : actions/checkout@v2
9- - name : PHPStan
10- uses : docker://oskarstark/phpstan-ga
11- with :
12- args : analyse src/ -c phpstan.neon
4+ # phpstan:
5+ # name: PHP Static Analysis
6+ # runs-on: ubuntu-latest
7+ # steps:
8+ # - uses: actions/checkout@v2
9+ # - name: PHPStan
10+ # uses: docker://oskarstark/phpstan-ga
11+ # with:
12+ # args: analyse src/ -c phpstan.neon
1313 tests :
1414 name : Unit Tests for PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
1515 runs-on : ${{ matrix.os }}
4040 - name : Install PHP 8.1 dependencies
4141 run : composer update --${{ matrix.dependency-version }} --no-interaction --no-progress
4242
43+ - name : Run PHPStan
44+ run : ./vendor/bin/phpstan
45+
4346 - name : Run Tests for PHP 8.1
4447 run : ./vendor/bin/pest --coverage
4548
You can’t perform that action at this time.
0 commit comments