Skip to content

fix(docs): resolve ReadTheDocs build failures #6

fix(docs): resolve ReadTheDocs build failures

fix(docs): resolve ReadTheDocs build failures #6

Workflow file for this run

name: Lint
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install ruff
- name: Run Ruff
run: |
source venv/bin/activate
ruff check src tests