Skip to content

Commit

Permalink
Enforce ruff rules in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Feb 5, 2025
1 parent 1429670 commit 8f3594f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Python linting

on:
pull_request:
branches:
- '*'

permissions:
contents: read

jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
- name: Lint with Ruff
run: ruff check --output-format=github

0 comments on commit 8f3594f

Please sign in to comment.