Update GitHub actions example in docs to use `--output-format` (#8014)

This commit is contained in:
Zanie Blue 2023-10-17 09:13:24 -05:00 committed by GitHub
parent d942a777d7
commit f60aa85471
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -292,7 +292,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install ruff
# Include `--format=github` to enable automatic inline annotations.
# Update output format to enable automatic inline annotations.
- name: Run Ruff
run: ruff check --format=github .
run: ruff check --output-format=github .
```