Skip to content

fix readme

fix readme #100

Workflow file for this run

---
name: unit tests
on:
- push
- pull_request
jobs:
test:
strategy:
fail-fast: false
matrix: # https://github.com/actions/runner-images#available-images
os: [macos-14, macos-15, macos-26]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Install dependencies
run: |
python3 --version
python3 -m venv $HOME/venv
source $HOME/venv/bin/activate
python3 -m pip install --upgrade pip
pip3 install tox
- name: Test with tox
run: |
source $HOME/venv/bin/activate
tox -e py,style