We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9219cf9 commit 71cbacaCopy full SHA for 71cbaca
1 file changed
.github/workflows/linters.yml
@@ -4,7 +4,7 @@
4
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
5
6
name: linters
7
-on:
+on:
8
push:
9
branches:
10
- master
@@ -23,7 +23,7 @@ jobs:
23
- name: Check out repository
24
uses: actions/checkout@v2
25
26
- - name: Set up Python
+ - name: Set up Python
27
uses: actions/setup-python@v2
28
with:
29
python-version: ${{ matrix.python }}
@@ -48,8 +48,8 @@ jobs:
48
- name: Check code style
49
run: |
50
. venv/bin/activate
51
- python -m ruff check .
52
- python -m black --check .
+ python -m ruff format --check
+ python -m ruff check
53
54
- name: Check directory layout
55
0 commit comments