Skip to content

Bump jaxtyping from 0.2.34 to 0.2.36 #138

Bump jaxtyping from 0.2.34 to 0.2.36

Bump jaxtyping from 0.2.34 to 0.2.36 #138

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Run Black
run: black . --check
- name: Run pyright
uses: jakebailey/pyright-action@v2
with:
version: 1.1.352
- name: Run pytest
run: |
export PYTHONPATH=$(pwd)
pytest tests