Add missing methods changeXXX to some properties to have a more consistent API accross properties. #503
Workflow file for this run
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/[email protected] | |
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 |