Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 2b95f70

Browse files
authored
Fixed code checks to not rely on virtual environment (#7)
1 parent 1981402 commit 2b95f70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
pip install -r requirements.txt
1717
- name: Code checks
1818
run: |
19-
make flake8
20-
make black
19+
flake8 .
20+
black --skip-string-normalization --line-length 120 .
2121
- name: Build
2222
run: python -m build .
2323
- name: Publish

0 commit comments

Comments
 (0)