Skip to content

Commit

Permalink
feat: add check_imports workflow & add badge for check_imports
Browse files Browse the repository at this point in the history
  • Loading branch information
norman committed Jan 6, 2024
1 parent 3462ba8 commit fad38e6
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/check_imports.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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/laravel-microscope --dev

- name: Check Imports
run: ./vendor/bin/check_imports

0 comments on commit fad38e6

Please sign in to comment.