We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 788c8cb commit 54965f2Copy full SHA for 54965f2
.github/workflows/ruff.yml
@@ -0,0 +1,10 @@
1
+name: Ruff
2
+
3
+on: [ push, pull_request ]
4
5
+jobs:
6
+ ruff:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - uses: chartboost/ruff-action@v1
.github/workflows/test.yml
@@ -41,7 +41,7 @@ jobs:
41
run: poetry install
42
- name: Run pytest
43
run: |
44
- poetry run pytest -vvv -ra --cov=cryptojwt --cov-report=xml --isort --black --ruff
+ poetry run pytest -vvv -ra --cov=cryptojwt --cov-report=xml --isort --black
45
- name: Upload coverage to Codecov
46
uses: codecov/codecov-action@v3
47
with:
0 commit comments