Skip to content

Commit

Permalink
FIX ruff versions in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
amilcarlucas committed Nov 17, 2024
1 parent 4638792 commit e2e86dd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,23 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.13']
python-version: ['py39']

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

# Ruff does not need a specific python version installed
- name: Install dependencies
run: |
python -m pip install -U ruff
- name: Lint with Ruff
run: |
ruff check --target-version ${{ matrix.python-version }} --output-format=github
- name: Check format with Ruff
run: |
ruff format --check

0 comments on commit e2e86dd

Please sign in to comment.