Skip to content

Commit 02e752d

Browse files
authored
ci: do not run psalm in ci as it cannot parse php types (#135)
1 parent 948f2ff commit 02e752d

File tree

1 file changed

+0
-31
lines changed

1 file changed

+0
-31
lines changed

.github/workflows/static-analysis.yml

-31
Original file line numberDiff line numberDiff line change
@@ -32,34 +32,3 @@ jobs:
3232

3333
- name: "Run a static analysis with phpstan/phpstan"
3434
run: "vendor/bin/phpstan analyse --error-format=checkstyle | cs2pr"
35-
36-
static-analysis-psalm:
37-
name: "Static Analysis with Psalm"
38-
runs-on: "ubuntu-20.04"
39-
40-
strategy:
41-
matrix:
42-
php-version:
43-
- "8.1"
44-
45-
steps:
46-
- name: "Checkout code"
47-
uses: actions/checkout@v3
48-
49-
- name: "Install PHP"
50-
uses: "shivammathur/setup-php@v2"
51-
with:
52-
coverage: "none"
53-
php-version: "${{ matrix.php-version }}"
54-
tools: "cs2pr"
55-
56-
- name: "Install dependencies with Composer"
57-
uses: "ramsey/composer-install@v2"
58-
59-
- name: "Run a static analysis with vimeo/psalm"
60-
run: "vendor/bin/psalm --output-format=github --shepherd --report=results.sarif"
61-
62-
- name: "Upload Security Analysis results to GitHub"
63-
uses: github/codeql-action/upload-sarif@v2
64-
with:
65-
sarif_file: results.sarif

0 commit comments

Comments
 (0)