Skip to content

Commit

Permalink
Avoid installing unused tools in CI environment
Browse files Browse the repository at this point in the history
CairoSVG is not required in CI environment. Installing it is useless overhead.

Go with latest available "black" to check python code formatting.
  • Loading branch information
deathaxe committed Jun 16, 2024
1 parent 0b81545 commit 9445a75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .

0 comments on commit 9445a75

Please sign in to comment.