Skip to content

Update copyright date #11

Update copyright date

Update copyright date #11

Workflow file for this run

name: "static analysis"
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
static-analysis:
strategy:
fail-fast: false
matrix:
php: [8.2, 8.3]
runs-on: ubuntu-latest
name: PHP ${{ matrix.php }} - Tests
steps:
- name: checkout code
uses: actions/checkout@v4
- name: setup php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- name: install dependencies
uses: ramsey/composer-install@v3
- name: run static analysis
run: vendor/bin/phpstan -c dev/phpstan/phpstan.neon.dist || true