Skip to content

Create CITATION.cff for citation #147

Create CITATION.cff for citation

Create CITATION.cff for citation #147

Workflow file for this run

name: Testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8 ]
steps:
- uses: actions/checkout@v2
- name: Set up Python all python version
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
pip install torch torchvision
pip install -r requirements.txt
- name: Run Test
run: python -m unittest discover tests