removing 0.4 from previous docs version list #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: [ main, 'stable/*' ] | |
pull_request: | |
branches: [ main, 'stable/*' ] | |
jobs: | |
tests: | |
name: tests-python${{ matrix.python-version }}-${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
os: ["ubuntu-latest", "macOS-latest", "windows-latest"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Pip cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-tests-${{ hashFiles('setup.py','requirements-dev.txt','constraints.txt') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.python-version }}-pip-tests- | |
${{ runner.os }}-${{ matrix.python-version }}-pip- | |
${{ runner.os }}-${{ matrix.python-version }} | |
- name: Install Deps | |
run: python -m pip install -U tox setuptools virtualenv wheel | |
- name: Install and Run Tests with JAX | |
run: tox -e jax | |
if: runner.os != 'Windows' | |
- name: Install and Run Tests | |
run: tox -e py | |
if: runner.os == 'Windows' | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Pip cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-lint-${{ hashFiles('setup.py','requirements-dev.txt','constraints.txt') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.python-version }}-pip-lint- | |
${{ runner.os }}-${{ matrix.python-version }}-pip- | |
${{ runner.os }}-${{ matrix.python-version }}- | |
- name: Install Deps | |
run: python -m pip install -U tox | |
- name: Run lint | |
run: tox -elint | |
docs: | |
name: docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Pip cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-${{ matrix.python-version }}-pip-docs-${{ hashFiles('setup.py','requirements-dev.txt','constraints.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip-docs- | |
${{ runner.os }}-pip- | |
${{ runner.os }}- | |
- name: Install Deps | |
run: | | |
python -m pip install -U tox | |
sudo apt-get install graphviz pandoc | |
- name: Build Docs | |
run: tox -edocs | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: html_docs | |
path: docs/_build/html |