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 e23588b commit bce23baCopy full SHA for bce23ba
.github/workflows/build.yml
@@ -21,7 +21,7 @@ jobs:
21
uses: astral-sh/ruff-action@v3
22
# Installs ruff for use in later steps
23
with:
24
- version: "0.7.2"
+ version: "0.9.1" # Match version specified in .pre-commit-config.yaml and pyproject.toml
25
args: --version
26
- name: Lint with Ruff
27
run: ruff check
.pre-commit-config.yaml
@@ -5,7 +5,7 @@ default_language_version:
5
python: python3.11
6
repos:
7
- repo: https://github.com/astral-sh/ruff-pre-commit
8
- rev: v0.9.1 # Match version specified in pyproject.toml
+ rev: v0.9.1 # Match version specified in pyproject.toml and .github/workflows/build.yml
9
hooks:
10
# Run the linter.
11
- id: ruff
0 commit comments