We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 102842a commit c8076faCopy full SHA for c8076fa
1 file changed
.github/workflows/lint-python.yml
@@ -0,0 +1,16 @@
1
+# https://beta.ruff.rs
2
+name: ruff
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
+jobs:
11
+ ruff:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - run: pip install --user ruff
16
+ - run: ruff --format=github --ignore="E722,F40,F841" --line-length=681 --target-version=py37 .
0 commit comments