Skip to content

Constrained scan update #206

Constrained scan update

Constrained scan update #206

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop]
tags: ["*"]
pull_request:
workflow_dispatch:
jobs:
test:
name: Python ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
version: ["3.10", "3.11", "3.12", "3.13"]
os: ["ubuntu-latest"]
arch: [x64]
experimental: [false]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Install python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[dev,jax,torch,web]'
- name: Test
run: pytest