File tree 1 file changed +17
-2
lines changed
1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 16
16
test-workbooks :
17
17
runs-on : ubuntu-latest
18
18
timeout-minutes : 30
19
+ strategy :
20
+ fail-fast : false
21
+ matrix :
22
+ PYXEM_VERSION : ['release', 'development']
19
23
steps :
20
24
- uses : actions/checkout@v3
21
25
@@ -24,10 +28,21 @@ jobs:
24
28
with :
25
29
python-version : ' 3.10'
26
30
27
- - name : Install package and dependencies
31
+ - name : Install pyxem (release)
32
+ if : contains(matrix.PYXEM_VERSION, 'release')
33
+ shell : bash
34
+ run : |
35
+ pip install pyxem
36
+
37
+ - name : Install pyxem (development)
38
+ if : contains(matrix.PYXEM_VERSION, 'development')
39
+ shell : bash
40
+ run : |
41
+ pip install "pyxem @ git+https://github.com/pyxem/pyxem.git"
42
+
43
+ - name : Install other libraries
28
44
shell : bash
29
45
run : |
30
- pip install pyxem
31
46
pip install -U nbval pyopencl
32
47
pip install nb-clean
33
48
pip install hyperspy[gui-jupyter]
You can’t perform that action at this time.
0 commit comments