summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2020-10-29 11:26:34 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2021-01-07 09:29:30 +0100
commit9b34b89c37cdc85be7124f529268331b9c80c683 (patch)
tree72256da75d96b07f55d1cddbd9e4c163a6066095 /.github
parent5e64f644bf24ddc0b9e887261fbb6b6a930b265d (diff)
Add psalm for static code analysis
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/static-code-check.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/static-code-check.yml b/.github/workflows/static-code-check.yml
new file mode 100644
index 000000000..5ba49b170
--- /dev/null
+++ b/.github/workflows/static-code-check.yml
@@ -0,0 +1,25 @@
+name: Static analysis
+on:
+ pull_request
+jobs:
+ static-psalm-analysis:
+ runs-on: ubuntu-latest
+ continue-on-error: true
+ strategy:
+ matrix:
+ ocp-version: [ 'dev-master', 'v20.0.0' ]
+ name: Nextcloud ${{ matrix.ocp-version }}
+ steps:
+ - name: Checkout
+ uses: actions/checkout@master
+ - name: Set up php
+ uses: shivammathur/setup-php@master
+ with:
+ php-version: 7.4
+ coverage: none
+ - name: Install dependencies
+ run: composer i
+ - name: Install dependencies
+ run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
+ - name: Run coding standards check
+ run: ./vendor/bin/psalm \ No newline at end of file