diff options
| author | 2023-11-09 17:18:38 +0000 | |
|---|---|---|
| committer | 2023-11-09 17:18:38 +0000 | |
| commit | 522b3ccec279ff01dbcd18beedc1cfc32714b111 (patch) | |
| tree | b4984a8c7db6aa90ab03191fdd56944606241d0c /.github | |
| parent | build(deps-dev): bump ruff from 0.0.289 to 0.0.291 (#113) (diff) | |
Upgrade ruff from 0.0.291 to 0.1.5
This also includes moving from black to ruff format for formatting
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 3e79885..0c49924 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -17,11 +17,11 @@ jobs: python_version: '3.11' - name: Run pre-commit hooks - run: SKIP=ruff pre-commit run --all-files + run: SKIP=ruff-lint pre-commit run --all-files # Run `ruff` using github formatting to enable automatic inline annotations. - name: Run ruff - run: "ruff check --format=github ." + run: "ruff check --output-format=github ." artifact: name: Generate & upload pull request artifacts |