Skip to content

Commit 7b2f3bc

Browse files
committed
Add python-style checks to pr ci
Signed-off-by: Fynn Schmitt-Ulms <[email protected]>
1 parent 3d49764 commit 7b2f3bc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/test-check.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,21 @@ jobs:
2626
run: pip3 install .[dev,accelerate]
2727
- name: "🔬 Running tests"
2828
run: make test
29+
30+
python-style:
31+
runs-on: ubuntu-24.04
32+
steps:
33+
- uses: actions/setup-python@v5
34+
with:
35+
python-version: '3.10'
36+
- uses: actions/checkout@v4
37+
with:
38+
fetch-depth: 0
39+
fetch-tags: true
40+
- name: Set Env
41+
run: |
42+
pip3 install --upgrade pip && pip3 install --upgrade setuptools
43+
- name: "⚙️ Install dependencies"
44+
run: pip3 install .[dev]
45+
- name: "🔬 Running quality checks"
46+
run: make quality

0 commit comments

Comments
 (0)