From f327616059b2fc7708eb55c6deba8efa3887e666 Mon Sep 17 00:00:00 2001 From: Iman Date: Thu, 25 Jan 2024 21:04:55 +0330 Subject: [PATCH] Create check_imports.yml --- .github/workflows/check_imports.yml | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/check_imports.yml diff --git a/.github/workflows/check_imports.yml b/.github/workflows/check_imports.yml new file mode 100644 index 0000000000..1f3586340c --- /dev/null +++ b/.github/workflows/check_imports.yml @@ -0,0 +1,33 @@ +name: Check Imports + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +permissions: + contents: read + +jobs: + check_imports: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Cache Composer packages + id: composer-cache + uses: actions/cache@v3 + with: + path: vendor + key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} + restore-keys: | + ${{ runner.os }}-php- + + - name: Install dependencies + run: composer install --prefer-dist --no-progress && composer require imanghafoori/php-imports-analyzer --dev + + - name: Check Imports + run: ./vendor/bin/check_imports