We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9375994 commit 0408a35Copy full SHA for 0408a35
1 file changed
.github/workflows/push.yml
@@ -12,13 +12,11 @@ jobs:
12
- name: Set up Python environment
13
uses: actions/setup-python@v4
14
with:
15
- python-version: 3.9
16
- - name: flake8
17
- uses: py-actions/flake8@v2
18
- - name: black
19
- uses: psf/black@stable
20
- with:
21
- options: '--check --diff -l 90'
+ python-version: 3.10
+ - name: ruff
+ run: |
+ pip install ruff
+ ruff .
22
23
build_wheels:
24
name: Build wheel on ${{matrix.platform}}
0 commit comments