mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
create action linter for php-laravel example
This commit is contained in:
37
.github/workflows/lint-php-laravel.yml
vendored
Normal file
37
.github/workflows/lint-php-laravel.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: Laravel Pint
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches: [master, main]
|
||||||
|
paths: ['web/documentserver-example/php-laravel/**']
|
||||||
|
pull_request:
|
||||||
|
branches: [master, main, develop]
|
||||||
|
paths: ['web/documentserver-example/php-laravel/**']
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: true
|
||||||
|
matrix:
|
||||||
|
php: [8.2]
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
working-directory: ./web/documentserver-example/php-laravel
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
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
|
||||||
|
|
||||||
|
- name: Run Pint
|
||||||
|
run: pint
|
||||||
Reference in New Issue
Block a user