Skip to content

Commit

Permalink
Create check_imports.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
imanghafoori1 committed Jan 25, 2024
1 parent 9803514 commit c2593c9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/check_imports.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c2593c9

Please # to comment.