Update jetbrains/phpstorm-stubs from 2022.2 to 2023.3 as minimal vers… #2086
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: | |
- main | |
tags: | |
- "**" | |
jobs: | |
coding-standards: | |
name: "Coding Standards" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
php-version: 8.1 | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring, xml, ctype, iconv | |
coverage: none | |
tools: composer | |
- name: "Install dependencies with composer" | |
run: make composer-install | |
- name: "Check cs" | |
run: make php-cs-check | |
static-code-analysis-phpstan: | |
name: "Static Code Analysis by PHPStan" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
php-version: 8.1 | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring, xml, ctype, iconv | |
coverage: none | |
tools: composer | |
- uses: "ramsey/composer-install@v2" | |
- name: PHPStan | |
run: make phpstan | |
static-code-analysis-psalm: | |
name: "Static Code Analysis by Psalm" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
php-version: 8.1 | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: mbstring, xml, ctype, iconv | |
coverage: none | |
tools: composer | |
- name: Get composer cache directory | |
id: composercache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composercache.outputs.dir }} | |
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('composer.*') }} | |
restore-keys: | | |
composer-${{ runner.os }}-${{ matrix.php-version }}- | |
composer-${{ runner.os }}- | |
composer- | |
- name: "Install dependencies with composer" | |
run: make composer-install | |
- name: Psalm | |
run: make psalm |