Skip to content

Feature/password hashing #9

Feature/password hashing

Feature/password hashing #9

Workflow file for this run

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