Skip to content

Commit

Permalink
Fix Ruff linting CI (#383)
Browse files Browse the repository at this point in the history
For some reason the old one didn't work, and didn't alert us to the fact that
it didn't.
  • Loading branch information
jakobnissen authored Jan 8, 2025
1 parent 905115c commit f3fe7e0
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,20 @@ on:
branches: [ "master" ]

jobs:
format:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
with:
version: 0.5.0
args: 'format --check'
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
with:
version: "0.8.x"

lint:

format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
with:
version: 0.5.0
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
with:
version: "0.8.x"
args: 'format --check'

0 comments on commit f3fe7e0

Please sign in to comment.