run conda checks for all operating systems
Browse files
.github/workflows/build.yml
CHANGED
@@ -70,7 +70,11 @@ jobs:
|
|
70 |
|
71 |
conda:
|
72 |
needs: build
|
73 |
-
runs-on:
|
|
|
|
|
|
|
|
|
74 |
steps:
|
75 |
- uses: conda-incubator/setup-miniconda@v2
|
76 |
with:
|
|
|
70 |
|
71 |
conda:
|
72 |
needs: build
|
73 |
+
runs-on: ${{ matrix.os }}
|
74 |
+
strategy:
|
75 |
+
matrix:
|
76 |
+
os: [ windows-2019, ubuntu-20.04, macos-11 ]
|
77 |
+
python-version: [ 3.7 ]
|
78 |
steps:
|
79 |
- uses: conda-incubator/setup-miniconda@v2
|
80 |
with:
|