We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e092f16 commit d39d27dCopy full SHA for d39d27d
.github/workflows/test-python.yaml
@@ -192,3 +192,20 @@ 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
+ - uses: actions/checkout@v4
204
+ - uses: astral-sh/ruff-action@v3
205
+ with:
206
+ src: >-
207
+ /tests/test_live_kyoto.py
208
+ /tests/test_live_tx_builder.py
209
+ /tests/test_live_wallet.py
210
+ /tests/test_offline_descriptor.py
211
+ /tests/test_offline_wallet.py
0 commit comments