Skip to content

add command INFO

add command INFO #1063

Workflow file for this run

name: Unused imports check
on:
push:
branches:
- develop
paths:
- 'packages/*/src/**'
pull_request:
branches:
- develop
paths:
- 'packages/*/src/**'
types:
- opened
- reopened
- synchronize
jobs:
unusedimports:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Kestrel package
run: |
pip install --upgrade pip setuptools wheel
pip install unimport
- name: Check
run: unimport --check --exclude __init__.py packages/*/src/