Upgrade to Livewire v3 (#431) #703
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: fix-styling | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
styling: | |
name: fix-styling | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ ubuntu-latest ] | |
php: [ 8.1 ] | |
laravel: [ 10.*] | |
dependency-version: [ prefer-stable ] | |
include: | |
- laravel: 10.* | |
testbench: ^8.0 | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
tools: composer:v2 | |
coverage: false | |
- name: Install Composer dependencies | |
run: composer install --prefer-dist --no-interaction | |
- name: PHP-Code Sniffer Beautifier | |
run: ./vendor/bin/phpcbf | |
- name: PHP-CS-Fixer | |
run: ./vendor/bin/php-cs-fixer fix | |
- name: Commit Changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: styling fixes |