mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Have psalm analysis directly on github
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
d42f9e65a2
commit
cc18213c98
1 changed files with 26 additions and 0 deletions
26
.github/workflows/psalm-github.yml
vendored
Normal file
26
.github/workflows/psalm-github.yml
vendored
Normal file
|
|
@ -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
|
||||
Loading…
Reference in a new issue