We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76bc712 commit e7d65a4Copy full SHA for e7d65a4
1 file changed
.github/workflows/ruff.yml
@@ -0,0 +1,11 @@
1
+name: Python code formatting with ruff
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ ruff:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - run: pipx install ruff==0.9.6
11
+ - run: ruff format --diff .
0 commit comments