Bump the all-composer group with 1 update #117
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: | |
branches: | |
- main | |
- boris/* | |
- develop | |
pull_request: | |
branches: [ main ] | |
jobs: | |
psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: create bundle | |
run: make index.php | |
- name: Archive installer | |
uses: actions/upload-artifact@v3 | |
with: | |
name: index.php | |
path: ./build/index.php | |
- uses: php-actions/composer@v6 | |
- name: Psalm | |
run: touch build/.composer-psalm && make psalm | |
- name: Upload Security Analysis results to GitHub | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: build/psam-github-results.sarif |