Skip to content

Bump dev dependencies #87

Bump dev dependencies

Bump dev dependencies #87

Workflow file for this run

name: "Static Analysis with PHPStan"
on:
pull_request:
push:
jobs:
static-analysis-psalm:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
php-versions: ['8.1']
operating-system:
- "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "pcov"
php-version: "${{ matrix.php-versions }}"
tools: composer, cs2pr
- name: "Install dependencies"
run: "composer update --no-interaction --no-progress"
- name: "Tests"
run: "vendor/bin/phpstan analyse --error-format=github"