refactor: Обновить Laravel с 10 до 11, устранить несовместимости #13
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 of workflow | |
name: code style | |
# Trigger the workflow on push or pull request | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
# The type of machine to run the job on | |
runs-on: ubuntu-latest | |
steps: | |
# Check-out repository under GitHub workspace | |
# https://github.com/actions/checkouthttps://github.com/actions/checkout | |
- uses: actions/checkout@v4 | |
# Step's name | |
- name: Setup PHP | |
# Action gives to setup the PHP environment to test application | |
# https://github.com/shivammathur/setup-php | |
uses: shivammathur/setup-php@v2 | |
with: | |
# Specify the PHP version | |
php-version: '8.4' | |
- name: Install | |
# Install deps | |
run: composer install | |
- name: Run linter | |
# Run Linter | |
run: composer exec --verbose phpcs -- --standard=phpcs.xml |