From 76225213471fd9880e3bcd89c4faf971f61ff1ff Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Sun, 11 Aug 2024 10:31:34 +0100 Subject: [PATCH] Use the pip requirements.txt in the github runner --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 61df43c..08a429c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 discord pytest schema + python -m pip install -r requirements.txt - name: Analysing the code with flake8 run: | flake8 --max-line-length 120 $(git ls-files '*.py')