Skip to content

Commit f4a93cd

Browse files
authored
Update ci.yml
1 parent bb25fd8 commit f4a93cd

1 file changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: CI
22
on: ['push', 'pull_request']
33
jobs:
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 }}
@@ -40,6 +40,9 @@ jobs:
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

0 commit comments

Comments
 (0)