Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

seeing as we are supporting laravel 11.x now, we need to bump minimum… #119

seeing as we are supporting laravel 11.x now, we need to bump minimum…

seeing as we are supporting laravel 11.x now, we need to bump minimum… #119

Workflow file for this run

name: Validate code style
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.3]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, dom, curl, libxml, mbstring
coverage: none
- name: Install Pint
run: composer global require laravel/pint=1.17.2
- name: Run Pint
run: pint --test