From 74a6b3a151b2747f96d5dfafd81f75793db99b38 Mon Sep 17 00:00:00 2001 From: Lucille Delisle Date: Wed, 6 Dec 2023 16:58:16 +0100 Subject: [PATCH] fix python version + add matrix to osx --- .github/workflows/test.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e84109d..2093630 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Use python ${{ matrix.python-version }} - run: echo " - python = ${{ matrix.python-version }}" >> ./HiCMatrix_env_ci.yml + run: echo -e "\n - python = ${{ matrix.python-version }}" >> ./HiCMatrix_env_ci.yml - uses: mamba-org/setup-micromamba@main with: environment-file: ./HiCMatrix_env_ci.yml @@ -35,8 +35,16 @@ jobs: test-osx: name: Test on OSX runs-on: macOS-latest + strategy: + matrix: + python-version: + - "3.8" + - "3.9" + - "3.10" steps: - uses: actions/checkout@v3 + - name: Use python ${{ matrix.python-version }} + run: echo -e "\n - python = ${{ matrix.python-version }}" >> ./HiCMatrix_env_ci.yml - uses: mamba-org/setup-micromamba@main with: environment-file: ./HiCMatrix_env_ci.yml