Update vimeo/psalm requirement from ^4.27 to ^5.24 #52
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
# GitHub Actions Documentation: https://docs.github.com/en/actions | |
name: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
php-versions: ['8.0', '8.1', '8.2'] | |
runs-on: ${{ matrix.operating-system }} | |
steps: | |
- name: Set git to use LF on Windows | |
if: matrix.operating-system == 'windows-latest' | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, xml, ctype, iconv, curl | |
coverage: xdebug | |
tools: composer | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer install --no-progress --optimize-autoloader ${{ 8.2 == matrix.php-versions && '--ignore-platform-reqs' || '' }} | |
- name: Check coding standards (PHP_CodeSniffer) | |
run: vendor/bin/phpcs | |
- name: "Statically analyze code (PHPStan)" | |
run: vendor/bin/phpstan analyse | |
- name: Statically analyze code (Psalm) | |
run: vendor/bin/psalm --output-format=github --taint-analysis --report=build/logs/psalm.sarif | |
- name: "Upload security analysis results to GitHub" | |
uses: "github/codeql-action/upload-sarif@v2" | |
with: | |
sarif_file: "build/logs/psalm.sarif" | |
- name: Run unit tests (PHPUnit) | |
run: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover | |
- name: "Upload coverage report to Codecov" | |
uses: codecov/codecov-action@v2 | |
continue-on-error: true | |
with: | |
files: ./coverage.clover |