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 83a8af5 commit ce3b94aCopy full SHA for ce3b94a
.github/workflows/build.yml
@@ -18,15 +18,15 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
- name: Display Ruff version
21
- uses: chartboost/ruff-action@v1
+ uses: astral-sh/ruff-action@v3 # Installs ruff for use in later steps
22
with:
23
- args: "--version"
+ args: --version
24
+ version-file: "pyproject.toml"
25
- name: Lint with Ruff
26
+ run: ruff --fix
27
- name: Format with Ruff
28
- with:
29
- args: "format --check"
+ run: ruff format --check
+
30
31
mypy:
32
runs-on: ubuntu-latest
0 commit comments