We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e092f16 commit af17607Copy full SHA for af17607
.github/workflows/test-python.yaml
@@ -192,3 +192,21 @@ jobs:
192
193
- name: "Run tests"
194
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
+ - name: "Checkout"
204
+ uses: actions/checkout@v4
205
+ with:
206
+ submodules: true
207
208
+ - name: "Install Ruff"
209
+ run: curl -LsSf https://astral.sh/ruff/install.sh | sh
210
211
+ - name: "Lint test targets"
212
+ run: ruff check ./tests/
0 commit comments