We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3115c16 commit 09851a4Copy full SHA for 09851a4
.github/workflows/ci.yaml
@@ -0,0 +1,21 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches: ["master"]
5
+ pull_request:
6
+
7
+jobs:
8
+ format:
9
+ runs-on: ubuntu-24.04
10
+ name: "Linting and formatting"
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v4
14
15
+ - name: Run ruff check
16
+ uses: astral-sh/ruff-action@v2
17
18
+ - name: Run ruff format --check
19
20
+ with:
21
+ args: "format --check"
dev_requirements.txt
@@ -1,3 +1,4 @@
-r requirements.txt
uwsgi
pycodestyle
+ruff
0 commit comments