Skip to content

Initial commit

Initial commit #21

Workflow file for this run

name: Test suite
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install pipenv
run: pip install pipenv
- name: Run tests
run: |
PIP_FIND_LINKS=https://download.pytorch.org/whl/torch pipenv install torch==2.3.0+cpu
pipenv sync --dev
pipenv run pytest -vv