Skip to content

Commit 2661d85

Browse files
committed
feat:ruff
1 parent f770dca commit 2661d85

19 files changed

+86
-222
lines changed

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ on:
1010
workflow_dispatch:
1111

1212
jobs:
13-
flake8:
13+
ruff:
1414
runs-on: ubuntu-latest
15-
name: "flake8 on code"
15+
name: "ruff on code"
1616
steps:
1717
- uses: actions/checkout@v4
1818

@@ -22,13 +22,13 @@ jobs:
2222
python-version: "3.12"
2323
poetry-version: "2.1.1"
2424

25-
- name: Run flake8
25+
- name: Run ruff
2626
shell: bash
2727
run: |
28-
poetry run flake8
28+
poetry run ruff
2929
3030
test:
31-
needs: [ 'flake8' ]
31+
needs: [ 'ruff' ]
3232
runs-on: ubuntu-latest
3333
name: "Run tests ${{ matrix.python-version }}/${{ matrix.django-version }}/${{ matrix.broker }}"
3434
strategy:

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
build:
33
os: "ubuntu-20.04"
44
tools:
5-
python: "3.11"
5+
python: "3.12"
66

77
mkdocs:
88
configuration: mkdocs.yml

poetry.lock

+40-154
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)