andreped commited on
Commit
51aa4f5
1 Parent(s): 5bbb56a

ignore .idea/

Browse files
.github/workflows/{build.yaml → build.yml} RENAMED
@@ -60,3 +60,19 @@ jobs:
60
  name: Python wheel
61
  path: ${{github.workspace}}/dist/livermask-*.whl
62
  if-no-files-found: error
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  name: Python wheel
61
  path: ${{github.workspace}}/dist/livermask-*.whl
62
  if-no-files-found: error
63
+
64
+ conda:
65
+ runs-on: ubuntu-20.04
66
+ steps:
67
+ - uses: conda-incubator/setup-miniconda@v2
68
+ with:
69
+ auto-update-conda: true
70
+ python-version: 3.7
71
+
72
+ - name: Download artifact
73
+ uses: actions/download-artifact@master
74
+ with:
75
+ name: "Python wheel"
76
+
77
+ - name: Install wheel
78
+ run: pip install --find-links=${{github.workspace}} gradient_accumulator
.gitignore CHANGED
@@ -6,3 +6,4 @@ livermask.egg-info/
6
  *.npz
7
  *.nii
8
  *__pycache__/
 
 
6
  *.npz
7
  *.nii
8
  *__pycache__/
9
+ .idea/