Skip to content

Get both sets of sphinx docs rendering properly #24

Get both sets of sphinx docs rendering properly

Get both sets of sphinx docs rendering properly #24

Workflow file for this run

name: Test scikits-odes-core
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
#- python-version: "3.7"
# tox-env: py37
#- python-version: "3.8"
# tox-env: py38
#- 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: check-manifest
#- python-version: "3.11"
# tox-env: checkreadme
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: pip cache
uses: actions/cache@v2
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-1
restore-keys: |
${{ runner.os }}-pip-
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
- name: Run tests
run: |
cd packages/scikits-odes-core && tox
env:
TOXENV: ${{ matrix.tox-env }}