Skip to content

feat: add colorblind simulation filter #630

feat: add colorblind simulation filter

feat: add colorblind simulation filter #630

Workflow file for this run

---
name: ci
on:
push:
branches: [main]
pull_request:
jobs:
setup:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- run: make setup
- run: |
uv build
uv pip install dist/*.tar.gz
uv pip install dist/*.whl
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- run: make setup
- run: make lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- run: make setup
- run: make test
- run: |
uv run --extra all python getting_started.py
for f in examples/*.py; do
test -x $f && uv run --extra all $f
done
env:
MPLBACKEND: agg