Skip to content

Merge pull request #188 from GilesStrong/refactor_poetry #334

Merge pull request #188 from GilesStrong/refactor_poetry

Merge pull request #188 from GilesStrong/refactor_poetry #334

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
PyTest:
runs-on: ubuntu-latest
# container: pytorch/pytorch:1.8.1-cuda11.1-cudnn8-runtime
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install Dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install
- name: pytest
run: poetry run pytest tests