Feature/combinator #11
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: Code Style | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}" | |
composer update | |
- run: ./vendor/bin/pint | |
- run: | | |
git config --global user.name 'Simon Hamp' | |
git config --global user.email '[email protected]' | |
if git add * ; then | |
git commit -m "Code style fixes" | |
git push | |
fi |