SEC25-120: Add Psalm PHP static analysis and CI/CD integration #1
This file contains hidden or 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: "CodeQL" | ||
| on: | ||
| push: | ||
| branches: [ "master" ] | ||
| pull_request: | ||
| branches: [ "master" ] | ||
| schedule: | ||
| - cron: '30 12 * * 1' | ||
| jobs: | ||
| analyze: | ||
| strategy: | ||
| matrix: | ||
| php-versions: [ '8.0', '8.1', '8.2', '8.3' ] | ||
| name: Analyze PHP ${{ matrix.php-versions }} | ||
| uses: tithely/php-workflows/.github/workflows/codeql.yml@main | ||
|
Check failure on line 17 in .github/workflows/codeql.yml
|
||
| with: | ||
| github-event-name: ${{ github.event_name }} | ||
| php-version: ${{ matrix.php-versions }} | ||
| php-extensions: "" | ||
| secrets: | ||
| actions-access-token: ${{ secrets.ACTIONS_ACCESS_TOKEN }} | ||