From 8ad29b5cf1c0b5cb92e0742f4280b4e80001708d Mon Sep 17 00:00:00 2001 From: Zach Fuller Date: Sat, 2 Mar 2024 13:24:13 -0700 Subject: [PATCH] disabled lint step --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e220cc5..a8f5ec8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,11 +39,11 @@ jobs: - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root - - name: Code linting - run: | - source .venv/bin/activate - ruff check src/loamy tests - ruff format --check src/loamy tests + # - name: Code linting + # run: | + # source .venv/bin/activate + # ruff check src/loamy tests + # ruff format --check src/loamy tests - name: Test with pytest run: | source .venv/bin/activate