diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml deleted file mode 100644 index 81687b26..00000000 --- a/.github/workflows/mypy.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Mypy Type Check - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - type-check: - runs-on: ubuntu-latest - - steps: - # Step 1: Checkout the code - - name: Checkout code - uses: actions/checkout@v3 - - # Step 2: Set up Python - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: 3.9 - - # Step 3: Install dependencies - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - # Step 4: Run Mypy - - name: Run mypy - run: mypy . --explicit-package-bases -