8000 Merge branch 'master' into issue-templates2 · getsentry/sentry-symfony@62c71c6 · GitHub
[go: up one dir, main page]

Skip to content

Update GH issue templates for Linear compatibility #1348

Update GH issue templates for Linear compatibility

Update GH issue templates for Linear compatibility #1348

name: Code style and static analysis
on:
pull_request:
push:
branches:
- master
- develop
- release/**
permissions:
contents: read
jobs:
php-cs-fixer:
name: PHP-CS-Fixer
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Install dependencies
uses: ramsey/composer-install@v3
with:
composer-options: --prefer-dist
- name: Run script
run: vendor/bin/php-cs-fixer fix --verbose --diff --dry-run
phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Install dependencies
uses: ramsey/composer-install@v3
with:
composer-options: --prefer-dist
- name: Run script
run: vendor/bin/phpstan analyse
psalm:
name: Psalm
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
- name: Install dependencies
uses: ramsey/composer-install@v3
with:
composer-options: --prefer-dist
- name: Run script
run: vendor/bin/psalm --php-version=8.0
0