Skip to content

Move ConstrICON code into ICON #429

Move ConstrICON code into ICON

Move ConstrICON code into ICON #429

Workflow file for this run

name: gpu-tests
on:
pull_request:
push:
branches: master
jobs:
test-linux:
runs-on: [self-hosted, linux]
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
pip install -U pip
pip install -r requirements.txt
pip install -e .
- name: fast test with unittest
run: |
python -m unittest -k CPU
- name: GPU test with unittest
run: |
python -m unittest discover
- name: Build docs
working-directory: docs
run: |
pip install sphinx sphinx-rtd-theme monai sphinx-tabs
make clean
make html SPHINXOPTS="-W --keep-going"