There was an error while loading. Please reload this page.
1 parent 396cab6 commit 78b03c5Copy full SHA for 78b03c5
2 files changed
.github/workflows/ci.yml
@@ -21,7 +21,12 @@ jobs:
21
run: |
22
set -euo pipefail
23
python -m pip install --upgrade pip
24
- python -m pip install -e . numpy pandas
+ python -m pip install -e . numpy pandas ruff
25
+
26
+ - name: Run Ruff
27
+ run: |
28
+ set -euo pipefail
29
+ ruff check .
30
31
- name: Run unit tests
32
pyproject.toml
@@ -17,3 +17,6 @@ package-dir = {"" = "src"}
17
18
[tool.setuptools.packages.find]
19
where = ["src"]
20
+[tool.ruff]
+target-version = "py311"
0 commit comments