Skip to content

Commit

Permalink
Merge pull request #24904 from nextcloud/enh/github-psalm
Browse files Browse the repository at this point in the history
Have psalm analysis directly on github
  • Loading branch information
rullzer authored Feb 10, 2021
2 parents 1cc23c6 + cc18213 commit d0cf4e2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/psalm-github.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d0cf4e2

Please sign in to comment.