Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
added lint workflow
  • Loading branch information
martinharnik committed Sep 22, 2025
commit 5a7af23c47d09c5ec84f85ee7bf44ab213c31090
29 changes: 29 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Lint Python Code

on:
pull_request:
branches:
- master
push:
branches:
- master
workflow_dispatch:

jobs:
lint: # Name of the job
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ruff

- name: Run Ruff
run: ruff check --output-format=github