diff --git a/.github/workflows/coding-standars.yml b/.github/workflows/coding-standars.yml new file mode 100644 index 00000000..f487cb0c --- /dev/null +++ b/.github/workflows/coding-standars.yml @@ -0,0 +1,29 @@ +name: fix code styling + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: 8.2 + extensions: json, dom, curl, libxml, mbstring + coverage: none + + - name: Install Pint + run: composer global require laravel/pint + + - name: Run Pint + run: pint + + - name: Commit linted files + uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: Fix code styling diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 26b2e6d0..f71946f7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,8 +21,5 @@ jobs: - name: Install Composer dependencies run: composer install --prefer-dist --no-interaction - - name: Run Laravel Pint - run: composer pint - - name: Execute tests run: composer pest