Merge tag 'v4.11.10' into develop #255
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" | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- develop | |
workflow_dispatch: ~ | |
jobs: | |
static-analysis: | |
name: "static analysis" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "checkout" | |
uses: "actions/checkout@v2" | |
- name: "installing PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "8.2" | |
ini-values: memory_limit=-1 | |
tools: composer:v2, cs2pr | |
extensions: bcmath, mbstring, intl, sodium, json | |
- name: Install dependencies | |
run: composer install | |
- name: "running static analysis" | |
run: ./tools/bin/project/project psalm | |
- name: "calculating type coverage" | |
run: ./tools/bin/project/project type-coverage |