From 8504f78e2d543e5975e79548c714e23a7c50f08b Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Sat, 21 Oct 2023 21:42:07 +0100 Subject: [PATCH] Update CI to use new ruff output argument --- .github/workflows/lint-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 0182d2682..f5f6cf0a9 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -23,7 +23,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: python -m pytest -n auto --cov pydis_core -q