From 68e28cb4a35a873e9cffcdea19ddc9d2c0902347 Mon Sep 17 00:00:00 2001 From: loathingKernel <142770+loathingKernel@users.noreply.github.com> Date: Sat, 28 Dec 2024 20:44:17 +0200 Subject: [PATCH] workflows: update checks workflow --- .github/workflows/checks.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index e669db388..f00407616 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -39,11 +39,14 @@ jobs: python3 -m pip install --upgrade pip pip3 install astroid pip3 install pylint - - name: Install Target Dependencies + - name: Install target dependencies run: | - pip3 install -r requirements.txt - pip3 install -r requirements-presence.txt - - name: Install Development Dependencies + pip3 install -r misc/requirements.in + - name: Generate version information + run: | + pip3 install setuptools-scm + python3 -m setuptools_scm --force-write-version-files + - name: Install development dependencies run: | pip3 install qstylizer - name: Analysis with pylint