Skip to content

Bump softprops/action-gh-release from 1 to 2 #4

Bump softprops/action-gh-release from 1 to 2

Bump softprops/action-gh-release from 1 to 2 #4

Workflow file for this run

# Static Analysis
name: Static Analysis
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
phpstan:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: dom, curl, libxml, mbstring
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run PHPStan
run: vendor/bin/phpstan analyse