mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-17 17:47:13 +00:00
Bumps the deps group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
738 B
YAML
34 lines
738 B
YAML
name: Fix Code Style
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
fix-style:
|
|
name: Fix Code Style
|
|
timeout-minutes: 15
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
COMPOSER_NO_INTERACTION: 1
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v7
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: 8.3
|
|
coverage: none
|
|
|
|
- name: Install dependencies
|
|
run: composer update --prefer-dist --no-progress
|
|
|
|
- run: composer fix-style
|
|
continue-on-error: true
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v7
|
|
with:
|
|
commit_message: composer fix-style
|
|
commit_author: laravel-ide-helper <[email protected]>
|