➕ Addition in Krayin configuration. #1771
Workflow file for this run
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: Linting Tests | |
on: [push, pull_request] | |
permissions: | |
contents: write | |
jobs: | |
linting_tests: | |
runs-on: ${{ matrix.operating-systems }} | |
strategy: | |
matrix: | |
operating-systems: [ubuntu-latest] | |
php-versions: ['8.3'] | |
name: PHP ${{ matrix.php-versions }} test on ${{ matrix.operating-systems }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Pint | |
run: composer global require laravel/pint | |
env: | |
COMPOSER_HOME: ${{ runner.temp }}/composer | |
- name: Run Pint | |
run: ${{ runner.temp }}/composer/vendor/bin/pint | |
- name: Commit Linted Files | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "chore: applied pint changes" |