Skip to content

Bump furo from 2025.7.19 to 2025.9.25 #61

Bump furo from 2025.7.19 to 2025.9.25

Bump furo from 2025.7.19 to 2025.9.25 #61

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
pip install flake8
flake8 src tests
- name: Run tests
run: |
pip install pytest
PYTHONPATH=src pytest