This repository has been archived by the owner on Mar 13, 2024. It is now read-only.
fix: do not show message it may contain dir info and full serv path #204
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Analysis | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
static-analysis: | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: "📥 Fetching Repository Contents" | |
uses: actions/checkout@v2 | |
- name: "💽 Installing PHP, Composer" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
coverage: none | |
ini-values: display_errors = on, error_reporting = E_ALL | |
tools: composer | |
- name: "💽 Installing Composer Packages" | |
run: composer install | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: "🧪 Psalm Code Analysis Checks" | |
run: composer psalm | |
- name: "🧪 PHPStan Code Analysis" | |
run: composer phpstan |