Skip to content

Commit 9445a75

Browse files
committed
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.
1 parent 0b81545 commit 9445a75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
with:
1515
python-version-file: '.python-version'
1616

17-
- name: Install dependencies
18-
run: python -m pip install -U -r requirements-dev.txt
17+
- name: Install Black
18+
run: python -m pip install -U black
1919

2020
- name: Check formatting
2121
run: python -m black --check .

0 commit comments

Comments
 (0)