Skip to content

v0.3.0 Release

v0.3.0 Release #138

Workflow file for this run

name: Run Pytest
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
python3 -m pip install pytest
python3 -m pip install torch==2.3.1
python3 -m pip install -e . --no-build-isolation
- name: Run tests
run: |
pytest -m "not gpu"