Skip to content

Don't crash with ZeroDivisionError if initial test ELBO is the best test ELBO #86

Don't crash with ZeroDivisionError if initial test ELBO is the best test ELBO

Don't crash with ZeroDivisionError if initial test ELBO is the best test ELBO #86

Workflow file for this run

name: 'validate WDL'
on:
pull_request:
branches: [ master, dev ]
env:
MINIWDL_VERSION: 1.8.0
jobs:
miniwdl-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: 'Install miniwdl and Run Validation Test'
run: |
pip install miniwdl==$MINIWDL_VERSION;
./cellbender/remove_background/tests/miniwdl_check_wdl.sh;
shell: bash