Skip to content
This repository was archived by the owner on Aug 5, 2026. It is now read-only.

Add Jochen Garcke as an author (#26) #24

Add Jochen Garcke as an author (#26)

Add Jochen Garcke as an author (#26) #24

Workflow file for this run

name: Lint and Format
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
paths: [ '**/*.py' ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}/${{ github.ref }}
cancel-in-progress: true
jobs:
python-format:
name: Ruff Lint and Format
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Setup Ruff
uses: astral-sh/ruff-action@v3
with:
args: --version
- name: Enforce Lint
run: ruff check .
- name: Enforce Format
run: |
ruff format --diff .