Skip to content

Update docs and S3 urls (#57) #49

Update docs and S3 urls (#57)

Update docs and S3 urls (#57) #49

Workflow file for this run

name: Unit-Test
on: [push, pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/cpu
pip install pytorch_lightning==1.6.4
pip install xarray netcdf4 opencv-python
pip install -U -e . --no-build-isolation
- name: Test with pytest
run: |
pip install pytest
cd tests/unittests && pytest .