Adjust README and composer requirements in light of recent sentinel c… #410
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: "SA" | |
on: | |
pull_request: | |
push: | |
jobs: | |
static-analysis-psalm: | |
name: "Static Analysis with Psalm" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v3" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "none" | |
extensions: "relay" | |
php-version: "7.4" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v2" | |
- name: "Run a static analysis with vimeo/psalm" | |
run: "vendor/bin/psalm --show-info=false --stats --output-format=github --threads=$(nproc)" |