Skip to content

Commit c7c696c

Browse files
committed
extend tests to py3.10
1 parent 132ba26 commit c7c696c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/qiita-plugin-ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ jobs:
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

0 commit comments

Comments
 (0)