From dd616576a3aec366813e6812d607f3c65f48e74c Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Fri, 28 Oct 2022 22:14:58 +0200 Subject: [PATCH] fix(gha): install the right dependencies --- .github/workflows/testing.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 704b6f7..13c1746 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -29,6 +29,10 @@ jobs: - name: pip version run: pip --version - name: Install dependencies + if: matrix.python-version == '3.9' + run: python -m pip install -r requirements-lint.txt + - name: Install dependencies + if: matrix.python-version != '3.9' run: python -m pip install -r requirements.txt # formatters - name: Run pyupgrade