Skip to content

[3.x] Laravel Framework 11.x and Laravel Dusk 8.x support #91

[3.x] Laravel Framework 11.x and Laravel Dusk 8.x support

[3.x] Laravel Framework 11.x and Laravel Dusk 8.x support #91

Workflow file for this run

name: Check PHP code style
on:
push:
branches:
- master
- 1.x
- 2.x
paths-ignore:
- LICENSE.md
- readme.md
pull_request:
paths-ignore:
- LICENSE.md
- readme.md
jobs:
style:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: .php-cs-fixer.cache
uses: actions/cache@v4
with:
path: .php-cs-fixer.cache
key: ${{ runner.OS }}-${{ github.repository }}-php-cs-fixer-${{ github.sha }}
restore-keys: |
${{ runner.OS }}-${{ github.repository }}-php-cs-fixer-
- name: Check style
uses: docker://oskarstark/php-cs-fixer-ga
with:
args: --dry-run --diff