Skip to content

feat: update released Phar binary #17

feat: update released Phar binary

feat: update released Phar binary #17

Workflow file for this run

name: Static Analysis
on: ['push', 'pull_request']
jobs:
pint:
runs-on: ubuntu-latest
name: Pint
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: none
- name: Install PHP dependencies
uses: ramsey/composer-install@v2
with:
dependency-versions: highest
composer-options: "--prefer-dist"
- name: Install Pint
run: composer global require laravel/pint --dev
- name: Run Pint
run: pint --test --ansi