Skip to content

mypy

mypy #70

Workflow file for this run

name: Check Imports
on: [push]
jobs:
check_imports:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the code
- name: Checkout code
uses: actions/checkout@v6
# Step 2: Set up Python environment
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x' # Choose your Python version
# Step 3: Check whether the imports only include known dependencies
- name: Check whether the imports only include known dependencies
run: |
python ./.github/workflows/check_imports.py .