From 9445a75855a9b0d44a1cab2976ed95216598d24b Mon Sep 17 00:00:00 2001 From: deathaxe Date: Sun, 16 Jun 2024 17:56:03 +0200 Subject: [PATCH] Avoid installing unused tools in CI environment CairoSVG is not required in CI environment. Installing it is useless overhead. Go with latest available "black" to check python code formatting. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c988231c..e02a2a28 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,8 +14,8 @@ jobs: with: python-version-file: '.python-version' - - name: Install dependencies - run: python -m pip install -U -r requirements-dev.txt + - name: Install Black + run: python -m pip install -U black - name: Check formatting run: python -m black --check .