From 74290db4a15db7081adefb0f64fe1329bc9c7be7 Mon Sep 17 00:00:00 2001 From: Nicola Coretti Date: Wed, 23 Oct 2024 15:41:59 +0200 Subject: [PATCH] Remove type checking for now --- .github/workflows/checks.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 4a005f7..f471d7e 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -69,27 +69,6 @@ jobs: path: .lint.txt include-hidden-files: true - Type-Check: - name: Type Checking (Python-${{ matrix.python-version }}) - needs: [ Version-Check ] - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] - - steps: - - name: SCM Checkout - uses: actions/checkout@v4 - - - name: Setup Python & Poetry Environment - uses: exasol/python-toolbox/.github/actions/python-environment@0.15.0 - with: - python-version: ${{ matrix.python-version }} - - - name: Run type-check - run: poetry run nox -s type-check - Security: name: Security Checks (Python-${{ matrix.python-version }}) needs: [ Version-Check ]