Skip to content

Improve Installation Process and Resolve Setup Issues #1

Improve Installation Process and Resolve Setup Issues

Improve Installation Process and Resolve Setup Issues #1

Workflow file for this run

name: Lint
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run ruff linter
run: ruff check .
- name: Run ruff formatter check
run: ruff format --check .