From d32fd411bbf55889902d783d46d52cfecff17377 Mon Sep 17 00:00:00 2001 From: Alex Dvornik Date: Fri, 20 Feb 2026 11:25:51 +0100 Subject: [PATCH] Updated config. Second test --- .github/workflows/ci-tests.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index dc4052a..fea8993 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -15,23 +15,18 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 - - name: Set up Python uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: pip - - name: Install Dependencies - working-directory: . run: | python -m pip install --upgrade pip pip install -e .[dev] - - name: Run linting run: | flake8 ./src/ - - name: Run tests run: | pytest