Merge pull request #142 from ericsizemore/renovate/lock-file-maintenance #478
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Psalm Static analysis | |
on: [push, pull_request] | |
jobs: | |
psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Psalm | |
uses: docker://vimeo/psalm-github-actions:latest | |
with: | |
args: --shepherd | |
composer_require_dev: true | |
security_analysis: true | |
report_file: results.sarif | |
- name: Upload Security Analysis results to GitHub | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: results.sarif |