andreped commited on
Commit
4622af5
2 Parent(s): 8676635 c70ef53

Merge pull request #29 from andreped/wget-fix

Browse files

Replaced gdown with wget for test CI using GitHub for data hosting instead of Google Drive

Files changed (1) hide show
  1. .github/workflows/build.yml +2 -2
.github/workflows/build.yml CHANGED
@@ -59,10 +59,10 @@ jobs:
59
 
60
  - name: Download test data
61
  run: |
62
- pip install --upgrade --no-cache-dir gdown
63
  mkdir samples
64
  cd samples
65
- gdown --no-cookies https://drive.google.com/uc?id=1EBU130MSupgrux-VXz2i1tY2P6kKng5w
66
 
67
  - name: Test CLI
68
  run: lungtumormask --help
 
59
 
60
  - name: Download test data
61
  run: |
62
+ pip install --upgrade --no-cache-dir wget
63
  mkdir samples
64
  cd samples
65
+ python -m wget https://github.com/VemundFredriksen/LungTumorMask/releases/download/0.0.1/lung_001.nii.gz
66
 
67
  - name: Test CLI
68
  run: lungtumormask --help