Skip to content

docs: readme to rst #157

docs: readme to rst

docs: readme to rst #157

Workflow file for this run

name: Tests
on:
push:
branches: master
pull_request:
branches: master
jobs:
run-tests:
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
os: [ ubuntu-latest ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Checks with pre-commit
uses: pre-commit/[email protected]
- name: Test with pytest
run: |
python -m pip install jaxlib==0.4.23
python -m pip install .[dev]
python -m pytest --runslow --durations=0