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 21837db commit 326c072Copy full SHA for 326c072
.github/workflows/django.yml
@@ -7,12 +7,8 @@ jobs:
7
- uses: actions/checkout@v3
8
- name: Build docker
9
run: docker compose build
10
- - name: Run isort
11
- run: docker compose run django isort styleguide_example/ --check
12
- - name: Run black
13
- run: docker compose run django black styleguide_example/ --check
14
- - name: Run flake8
15
- run: docker compose run django flake8
+ - name: Run ruff
+ run: docker compose run django ruff check styleguide_example/
16
- name: Run mypy
17
run: docker compose run django mypy --config mypy.ini styleguide_example/
18
- name: Run tests
0 commit comments