diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2021-02-10 19:03:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-10 19:03:55 +0100 |
commit | d0cf4e2f584d8b13a14b12361cbedd45a783fe6d (patch) | |
tree | 3983c0265837cfdef8ed89f7ee36505d76aa35fd | |
parent | 1cc23c6e6e174d05fde8c6ea06b75530f72f096a (diff) | |
parent | cc18213c98b082d5c9514c1db94eb0248c951774 (diff) | |
download | nextcloud-server-d0cf4e2f584d8b13a14b12361cbedd45a783fe6d.tar.gz nextcloud-server-d0cf4e2f584d8b13a14b12361cbedd45a783fe6d.zip |
Merge pull request #24904 from nextcloud/enh/github-psalm
Have psalm analysis directly on github
-rw-r--r-- | .github/workflows/psalm-github.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/psalm-github.yml b/.github/workflows/psalm-github.yml new file mode 100644 index 00000000000..ef35c39cd67 --- /dev/null +++ b/.github/workflows/psalm-github.yml @@ -0,0 +1,26 @@ +name: Psalm show github + +on: + push: + pull_request: + schedule: + - cron: '0 0 * * 0' + +jobs: + psalm: + name: Psalm + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + submodules: recursive + - name: Psalm + uses: docker://vimeo/psalm-github-actions + continue-on-error: true + with: + report_file: results.sarif + - name: Upload Analysis results to GitHub + uses: github/codeql-action/upload-sarif@v1 + with: + sarif_file: results.sarif |