37 lines
693 B
YAML
37 lines
693 B
YAML
#---
|
|
#
|
|
# Run Laravel Pint
|
|
# https://laravel.com/docs/11.x/pint#running-tests-on-github-actions
|
|
#
|
|
# name: Check Code Style
|
|
#
|
|
# on:
|
|
# pull_request:
|
|
# push:
|
|
# branches:
|
|
# - main
|
|
# - dev
|
|
# - "feature/**"
|
|
# - "release/**"
|
|
# - "hotfix/**"
|
|
#
|
|
# jobs:
|
|
# lint:
|
|
# runs-on: ubuntu-latest
|
|
# strategy:
|
|
# fail-fast: true
|
|
# matrix:
|
|
# php: [8.4]
|
|
#
|
|
# 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
|
|
|