We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6595120 commit 0be52e2Copy full SHA for 0be52e2
.github/workflows/ruff.yaml
@@ -0,0 +1,27 @@
1
+name: Code Formatting
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ - dev
8
9
+jobs:
10
+ format:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - name: Set up Python
17
+ uses: actions/setup-python@v4
18
+ with:
19
+ python-version: '3.10'
20
21
+ - name: Install Ruff
22
+ run: |
23
+ python -m pip install --upgrade pip
24
+ pip install ruff
25
26
+ - name: Run Ruff Formatter
27
+ run: ruff format .
0 commit comments