1515 lint :
1616 name : " Lint"
1717 runs-on : " ubuntu-latest"
18+ if : ${{ false }}
1819
1920 strategy :
2021 matrix :
5253 name : " Coding Standard"
5354
5455 runs-on : " ubuntu-latest"
56+ if : ${{ false }}
5557
5658 strategy :
5759 matrix :
8486 name : " Dependency Analysis"
8587
8688 runs-on : " ubuntu-latest"
89+ if : ${{ false }}
8790
8891 strategy :
8992 matrix :
@@ -109,6 +112,7 @@ jobs:
109112 tests :
110113 name : " Tests"
111114 runs-on : ${{ matrix.operating-system }}
115+ if : ${{ false }}
112116
113117 strategy :
114118 fail-fast : false
@@ -149,6 +153,7 @@ jobs:
149153 tests-old-phpunit :
150154 name : " Tests with old PHPUnit"
151155 runs-on : ${{ matrix.operating-system }}
156+ if : ${{ false }}
152157
153158 strategy :
154159 fail-fast : false
@@ -208,19 +213,28 @@ jobs:
208213 run : " composer install --no-interaction --no-progress --no-suggest"
209214
210215 - name : " Tests"
216+ continue-on-error : true
211217 run : |
212218 php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude="~vendor~" vendor/bin/phpunit
213219
214220 - name : " Coveralls"
221+ if : ${{ false }}
215222 env :
216223 COVERALLS_REPO_TOKEN : ${{ secrets.GITHUB_TOKEN }}
217224 run : |
218225 composer require twinh/php-coveralls --dev && \
219226 vendor/bin/php-coveralls --verbose --coverage_clover=tests/tmp/clover.xml --json_path=tests/tmp/coveralls-upload.json
227+ - name : " DeepSource"
228+ env :
229+ DEEPSOURCE_DSN : ${{ secrets.DEEPSOURCE_DSN }}
230+ run : |
231+ curl https://deepsource.io/cli | sh && \
232+ ./bin/deepsource report --analyzer test-coverage --key php --value-file tests/tmp/clover.xml
220233
221234 static-analysis :
222235 name : " PHPStan"
223236 runs-on : ${{ matrix.operating-system }}
237+ if : ${{ false }}
224238
225239 strategy :
226240 fail-fast : false
@@ -264,6 +278,7 @@ jobs:
264278
265279 static-analysis-with-result-cache :
266280 name : " PHPStan with result cache"
281+ if : ${{ false }}
267282
268283 runs-on : ubuntu-latest
269284
@@ -311,6 +326,7 @@ jobs:
311326 name : " Result cache E2E tests"
312327
313328 runs-on : ${{ matrix.operating-system }}
329+ if : ${{ false }}
314330
315331 strategy :
316332 matrix :
@@ -339,6 +355,7 @@ jobs:
339355
340356 compiler-tests :
341357 name : " Compiler Tests"
358+ if : ${{ false }}
342359
343360 runs-on : " ubuntu-latest"
344361
@@ -369,6 +386,7 @@ jobs:
369386
370387 generate-baseline :
371388 name : " Generate baseline"
389+ if : ${{ false }}
372390
373391 runs-on : " ubuntu-latest"
374392
@@ -399,6 +417,7 @@ jobs:
399417 e2e-tests :
400418 name : " E2E tests"
401419 runs-on : " ubuntu-latest"
420+ if : ${{ false }}
402421
403422 strategy :
404423 matrix :
0 commit comments