Skip to content

Merge branch 'main' into development #20

Merge branch 'main' into development

Merge branch 'main' into development #20

Workflow file for this run

name: Lint-Check
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
- name: Install dependencies
run: pip install ruff
- name: Run check
run: |
ruff check
ruff format --check