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 77b0e71 commit 0b1fe58Copy full SHA for 0b1fe58
.github/workflows/black.yml
.github/workflows/ruff.yml
@@ -0,0 +1,20 @@
1
+name: CI
2
+on: push
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v4
8
+ - name: Install Python
9
+ uses: actions/setup-python@v5
10
+ with:
11
+ python-version-file: ".python-version"
12
+
13
+ - name: Install dependencies
14
+ run: |
15
+ python -m pip install --upgrade pip
16
+ pip install ruff
17
18
+ # Update output format to enable automatic inline annotations.
19
+ - name: Run Ruff
20
+ run: ruff check --output-format=github .
0 commit comments