Skip to content

add 2 new scripts

add 2 new scripts #40

Workflow file for this run

name: Ruff Linting
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
name: Ruff Check
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
pip install .
- name: Run Ruff Check
run: ruff check --output-format=github .
- name: Run Ruff Format Check
run: ruff format --check .