We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7542f6e commit 872406cCopy full SHA for 872406c
.github/workflows/testing.yml
@@ -6,6 +6,9 @@ on:
6
- master
7
pull_request:
8
9
+defaults:
10
+ shell: bash
11
+
12
jobs:
13
14
pytest:
@@ -40,11 +43,13 @@ jobs:
40
43
if: ${{ runner.os != 'Windows' }}
41
44
run: |
42
45
bash .github/workflows/metis.sh
46
+ echo WITH_METIS=1 >> $GITHUB_ENV
47
48
- name: Install METIS on Windows
49
if: ${{ runner.os == 'Windows' }}
50
51
bash .github/workflows/metis-${{ runner.os }}.sh
52
+ echo WITH_METIS=0 >> $GITHUB_ENV
53
54
- name: Install scipy
55
if: ${{ matrix.python-version == '3.9' }}
@@ -55,7 +60,7 @@ jobs:
60
56
61
python setup.py develop
57
62
env:
58
- WITH_METIS: 1
63
+ WITH_METIS: ${{ env.WITH_METIS }}
59
64
65
- name: Run test-suite
66
0 commit comments