From c7ddc0351e90fc3b75c02500aaab13e043a6726a Mon Sep 17 00:00:00 2001 From: Arjun Desai Date: Tue, 11 Jul 2023 12:01:55 -0700 Subject: [PATCH] remove requirements.txt from Linting CI - it is not required to run the lint check --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d67332..7c1775f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,6 @@ jobs: - name: Install Dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt pip install -r requirements-dev.txt - name: Lint with isort, black, docformatter, flake8