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 35a13ce commit e0719c8Copy full SHA for e0719c8
.github/workflows/build.yaml
@@ -17,22 +17,16 @@ jobs:
17
- name: Checkout Repo
18
uses: actions/checkout@v4
19
20
- # Add Python and Ruff linting steps
21
- - name: Set up Python
22
- uses: actions/setup-python@v4
23
- with:
24
- python-version: '3.11'
25
-
26
- - name: Install Ruff
27
- run: pip install ruff>=0.12.5
28
+ # Ruff linting steps
29
- name: Run Ruff linter
30
- working-directory: ./app
31
- run: ruff check .
32
+ uses: astral-sh/ruff-action@v1
+ with:
+ args: check ./app
+
33
- name: Run Ruff formatter check
34
35
- run: ruff format --check .
+ args: "format --check"
36
37
- name: Build Docker image
38
working-directory: ./app
0 commit comments