From c1379956cabee61c97caf4ce0a5de41ecbd70395 Mon Sep 17 00:00:00 2001 From: Daniel Grothe Date: Fri, 21 Jul 2023 14:01:25 +0200 Subject: [PATCH] Install qumada before analysis --- .github/workflows/static.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 6c49932e..15389d77 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -26,6 +26,8 @@ jobs: run: | python -m pip install --upgrade pip pip install pylint + - name: Install package + run: python -m pip install -e . - name: Analysing the code with pylint run: | pylint src @@ -48,6 +50,8 @@ jobs: run: | python -m pip install --upgrade pip pip install mypy + - name: Install package + run: python -m pip install -e . - name: Analysing the code with mypy run: | mypy src