Merge pull request #206 from myrotvorets/renovate/shivammathur-setup-… #583
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: Static Code Analysis | |
on: | |
push: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
env: | |
PHP_VERSION: "8.0" | |
jobs: | |
psalm: | |
runs-on: ubuntu-latest | |
name: Psalm | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@81cd5ae0920b34eef300e1775313071038a53429 # 2.27.0 | |
with: | |
coverage: none | |
php-version: ${{ env.PHP_VERSION }} | |
- name: Install dependencies | |
uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # tag=2.2.0 | |
- name: Run psalm | |
run: composer psalm -- --output-format=github |