Skip to content

Commit badf81e

Browse files
committed
feat(ci): add python linter to python CI jobs
1 parent e092f16 commit badf81e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/test-python.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,3 +192,15 @@ jobs:
192192

193193
- name: "Run tests"
194194
run: python -m unittest discover --start "./tests/" --pattern "test_offline_*.py" --verbose
195+
196+
ruff:
197+
name: "Lint tests"
198+
runs-on: ubuntu-latest
199+
defaults:
200+
run:
201+
working-directory: bdk-python
202+
steps:
203+
- uses: actions/checkout@v4
204+
- uses: astral-sh/ruff-action@v3
205+
with:
206+
src: "./tests/"

0 commit comments

Comments
 (0)