Skip to content

Commit 9d44f93

Browse files
authored
Merge pull request RustPython#4943 from youknowone/use-ruff
Use ruff for CI
2 parents b8bca5a + 8c1d923 commit 9d44f93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -370,10 +370,10 @@ jobs:
370370
- uses: actions/setup-python@v4
371371
with:
372372
python-version: "3.11"
373-
- name: install flake8
374-
run: python -m pip install flake8
373+
- name: install ruff
374+
run: python -m pip install ruff
375375
- name: run lint
376-
run: flake8 . --count --exclude=./.*,./Lib,./vm/Lib,./benches/ --select=E9,F63,F7,F82 --show-source --statistics
376+
run: ruff extra_tests wasm examples compiler/ast --exclude='./.*',./Lib,./vm/Lib,./benches/ --select=E9,F63,F7,F82 --show-source
377377
- name: install prettier
378378
run: yarn global add prettier && echo "$(yarn global bin)" >>$GITHUB_PATH
379379
- name: check wasm code with prettier

0 commit comments

Comments
 (0)