We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d8ad0e commit 3e1d707Copy full SHA for 3e1d707
.github/workflows/ci.yml
@@ -111,6 +111,20 @@ jobs:
111
- name: Check CSS code style
112
run: npm run lint:css
113
114
+ phpstan:
115
+ name: Run PHPstan
116
+ runs-on: ubuntu-latest
117
+ container: joomlaprojects/docker-images:php8.4
118
+ needs: [code-style-php]
119
+ steps:
120
+ - uses: actions/checkout@v4
121
+ - uses: actions/cache/restore@v4
122
+ with:
123
+ path: libraries/vendor
124
+ key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
125
+ - name: Run PHPstan
126
+ run: ./libraries/vendor/bin/phpstan || :
127
+
128
tests-unit:
129
name: Run Unit tests
130
runs-on: ubuntu-latest
0 commit comments