Skip to content

Bump php version to 8.2 (#34) #15

Bump php version to 8.2 (#34)

Bump php version to 8.2 (#34) #15

Workflow file for this run

name: "Static Analysis"
on:
pull_request:
branches:
- 'feature/**'
push:
branches:
- 'feature/**'
jobs:
static-analysis-phpstan:
name: "Static Analysis with PHPStan"
runs-on: "ubuntu-22.04"
strategy:
matrix:
php-version:
- "8.2"
- "8.3"
steps:
- name: "Checkout code"
uses: "actions/checkout@v3"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
tools: "cs2pr"
- name: "Install dependencies with Composer"
uses: "ramsey/composer-install@v2"
- name: "Run a static analysis with phpstan/phpstan"
run: "vendor/bin/phpstan --error-format=checkstyle | cs2pr"