File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 99 # derived from https://github.com/actions/example-services/blob/master/.github/workflows/postgres-service.yml
1010 main :
1111 runs-on : ubuntu-latest
12-
12+ strategy :
13+ matrix :
14+ python-version : ["3.9", "3.10"]
1315 steps :
1416 # Downloads a copy of the code in your repository before running CI tests
1517 - name : Check out repository code
@@ -19,12 +21,12 @@ jobs:
1921 uses : conda-incubator/setup-miniconda@v2
2022 with :
2123 auto-update-conda : true
22- python-version : 3.9
24+ python-version : ${{ matrix.python-version }}
2325
2426 - name : Basic dependencies install
2527 shell : bash -l {0}
2628 run : |
27- conda create --yes -n qiita-files python=3.9 h5py pandas scipy numpy
29+ conda create --yes -n qiita-files python=${{ matrix.python-version }} h5py pandas scipy numpy
2830 conda activate qiita-files
2931 pip install .
3032 pip install sphinx sphinx-bootstrap-theme nose-timer codecov Click
You can’t perform that action at this time.
0 commit comments