Skip to content

Update README.md

Update README.md #79

Workflow file for this run

name: Tests
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
tests:
name: Python 3.11 tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Check out repository
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: "3.11"
cache: pip
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install GBB and development dependencies
run: python -m pip install -e ".[dev]"
- name: Run Ruff
run: python -m ruff check gbb tests
- name: Run tests
run: python -m pytest -q