Merge pull request #15 from laracasts/run-tests #17
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: Laravel Pint | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
laravel-pint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4.1.7 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Setup PHP and Composer | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
tools: composer:v2 | |
- name: Install Laravel Pint | |
run: composer global require laravel/pint | |
- name: Run Pint | |
run: pint | |
- name: Push Changes Back to Repo | |
run: | | |
git config user.name "gh-actions" | |
git config user.email "gh@laracasts.com" | |
git add . | |
git commit -m "Laravel Pint" || exit 0 | |
git push |