We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c68d06 commit ffea0d5Copy full SHA for ffea0d5
1 file changed
.github/workflows/ruff.yml
@@ -0,0 +1,19 @@
1
+name: Ruff
2
+on: [push, pull_request]
3
+
4
+env:
5
+ RUFF_VERSION: 0.11.4
6
7
+jobs:
8
+ ruff:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: astral-sh/ruff-action@v3
13
+ with:
14
+ version: $RUFF_VERSION
15
+ args: check --output-format=github
16
17
18
19
+ args: format --diff
0 commit comments