diff options
author | 2023-09-27 20:14:11 +0200 | |
---|---|---|
committer | 2023-09-27 19:14:11 +0100 | |
commit | 3f5682ae021f371d8ab917e836150a14bb2659c3 (patch) | |
tree | 227f29417766be8fa0281ca3aa9715ed992c919c | |
parent | Bump ruff from 0.0.290 to 0.0.291 (#2769) (diff) |
Change deprecated ruff output format flag (#2771)
See python-discord/infra#148.
-rw-r--r-- | .github/workflows/lint-test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index 8bf155275..888bb5bc9 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -50,7 +50,7 @@ jobs: # Run `ruff` using github formatting to enable automatic inline annotations. - name: Run ruff - run: "ruff check --format=github ." + run: "ruff check --output-format=github ." - name: Run tests and generate coverage report run: pytest -n auto --cov --disable-warnings -q |