Update ruff.yml #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Analyze With Ruff | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
jobs: | |
analyze-with-ruff: | |
name: Analyze With Ruff | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip | |
pip install ruff | |
- name: Run ruff | |
run: ruff check | |
--output-format sarif > ruff-results.sarif | |
- name: Upload ruff results to GitHub | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ruff-results.sarif | |
wait-for-processing: true |