Skip to content

Mark the package educational-only in docs and metadata #65

Mark the package educational-only in docs and metadata

Mark the package educational-only in docs and metadata #65

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
tests:
name: Tests (${{ matrix.tox-env }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.9"
tox-env: py39
- python-version: "3.10"
tox-env: py310
- python-version: "3.11"
tox-env: py311
- python-version: "3.12"
tox-env: py312
- python-version: "3.11"
tox-env: numpy1
- python-version: "3.11"
tox-env: numpy2
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip tox
- run: python -m tox -e ${{ matrix.tox-env }}
quality-and-build:
name: Lint, format and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: python -m pip install --upgrade pip tox
- run: python -m tox -e quality