From f6f8ab4418915e773f74709e505cad87ae4024a1 Mon Sep 17 00:00:00 2001 From: danielopes7 Date: Wed, 26 Mar 2025 22:56:44 -0300 Subject: [PATCH] feat: add pre-push hook for PHP checks and update workflow job name --- {.hooks => .github/hooks}/pre-push | 0 .github/workflows/laravel.yml | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename {.hooks => .github/hooks}/pre-push (100%) diff --git a/.hooks/pre-push b/.github/hooks/pre-push similarity index 100% rename from .hooks/pre-push rename to .github/hooks/pre-push diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index cf60027..6bb9db2 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -5,8 +5,8 @@ on: branches: [ "master" ] jobs: - phpstan: - name: phpstan + static-analyse: + name: Static Analysis runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -23,4 +23,4 @@ jobs: run: vendor/bin/phpstan analyse --memory-limit=1G - name: Run Laravel Pint (Lint) - run: vendor/bin/pint --test + run: vendor/bin/pint --test \ No newline at end of file