[PLA-1984] Moves scalar to core package (#97) #518
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: Code Analysis and Linting | |
on: | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
push: | |
paths-ignore: | |
- "**.md" | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: Code Analysis | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
tools: composer:v2 | |
coverage: none | |
- name: Checkout friendsofphp php-cs-fixer code | |
uses: actions/checkout@v4 | |
with: | |
repository: "friendsofphp/php-cs-fixer" | |
ref: "v3.13.1" | |
path: ".php-cs-fixer" | |
- name: Install dependencies | |
run: | | |
cd .php-cs-fixer/ | |
composer install | |
cd .. | |
- name: Run | |
run: ./.php-cs-fixer/php-cs-fixer fix --dry-run --diff --show-progress=none --verbose |