docs: update documentation website URL (#364) #522
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 Analysis (Psalm)" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
psalm: | |
name: Psalm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.1" | |
tools: none | |
- name: Install composer dependencies | |
uses: ramsey/composer-install@1.3.0 | |
with: | |
dependency-versions: locked | |
composer-options: --no-ansi --no-interaction --no-progress | |
- name: Run tests with psalm and send coverage report | |
run: composer ci:psalm |