Skip to content

Merge pull request #414 from anodyne/global-search #66

Merge pull request #414 from anodyne/global-search

Merge pull request #414 from anodyne/global-search #66

Workflow file for this run

on:
push:
branches:
- "**"
name: Code Style
jobs:
laravel-pint:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
php: [8.3]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Install Laravel Pint
run: composer global require laravel/pint
- name: Check Coding Standards
run: pint --test