From ae77e729cb4a1680b9a13a7c7d7142501f8d976e Mon Sep 17 00:00:00 2001 From: asyms Date: Fri, 22 Sep 2023 16:18:59 +0200 Subject: [PATCH] update python-test workflow to install requirements.txt --- .github/workflows/python-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index cafa0a75..9cc3e5d9 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -22,7 +22,7 @@ jobs: run: | python -m pip install --upgrade pip pip install ruff - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + pip install -r requirements.txt - name: Lint with ruff run: | # stop the build if there are Python syntax errors or undefined names