Skip to content

update title in README to reflect the working title of the book #2

update title in README to reflect the working title of the book

update title in README to reflect the working title of the book #2

Workflow file for this run

name: code-ci
on:
push:
pull_request:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install package (dev extras)
working-directory: code
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run unit tests
working-directory: code
run: |
pytest -q