Bump kawax/composer-workflow/.github/workflows/update.yml from b1ad2a4aa1d05fba8ce5c3590f486546a5c7c0fa to 15c23237552697eacac7b32ef9f217906db85db3 in the github-actions group #39
Workflow file for this run
This file contains hidden or 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: linter | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| pull_request: | |
| branches: | |
| - develop | |
| - main | |
| permissions: | |
| contents: write | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| environment: Testing | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 | |
| with: | |
| php-version: 8.5 | |
| - name: Install Dependencies | |
| run: | | |
| composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
| - name: Run Pint | |
| run: composer run lint:check | |
| # - name: Commit Changes | |
| # uses: stefanzweifel/git-auto-commit-action@v5 | |
| # with: | |
| # commit_message: fix code style | |
| # commit_options: '--no-verify' | |
| # file_pattern: | | |
| # **/* | |
| # !.github/workflows/* |