We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e2e24 commit 494dab4Copy full SHA for 494dab4
1 file changed
.github/workflows/notebook-test.yml
@@ -11,19 +11,14 @@ jobs:
11
- uses: actions/setup-python@v3
12
with:
13
python-version: '3.9'
14
- - uses: conda-incubator/setup-miniconda@v2
+ - uses: actions/setup-java@v3
15
16
- python-version: '3.9'
17
- mamba-version: "*"
18
- channels: conda-forge,defaults
19
- channel-priority: true
20
- - name: Install PyImageJ example dependencies
21
- shell: bash -l {0}
22
- run: |
23
- mamba install --yes -c conda-forge pyimagej openjdk=8 pip
+ java-version: '8'
+ distribution: 'zulu'
24
- name: Install test dependencies
25
run: |
26
- pip install -e '.[test]'
+ python3 -m pip install --upgrade pip
+ python3 -m pip install -e ".[test]"
27
- name: Test notebooks
28
29
pytest --nbmake --nbmake-timeout=3000 examples/*ipynb
0 commit comments