From 10f94271eca93b47006579ac7ec76b591e5c5a5b Mon Sep 17 00:00:00 2001 From: Jeroen van der Heijden Date: Mon, 27 Jan 2025 15:43:50 +0100 Subject: [PATCH] Upd CI --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7645e8f..d68f5e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: run: | python -m pip install --upgrade pip pip install pytest pycodestyle pyright + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with PyCodeStyle run: | find . -name \*.py -exec pycodestyle {} +