Skip to content
This repository was archived by the owner on Dec 22, 2025. It is now read-only.

Commit 9a2ee61

Browse files
authored
cicd: update linting check (#14)
1 parent b1ccfce commit 9a2ee61

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/checks.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ jobs:
66
steps:
77
- uses: actions/checkout@v3
88

9-
- name: black
10-
uses: psf/black@stable
9+
- name: Setup Python
10+
uses: actions/setup-python@v4
11+
with:
12+
python-version: 3.11
1113

12-
- name: ruff
13-
uses: chartboost/ruff-action@v1
14+
- name: Install dependencies
15+
run: python3 -m pip install ".[dev]"
16+
17+
- name: Check style
18+
run: python3 -m ruff check . && ruff format --check .

0 commit comments

Comments
 (0)