Skip to content

Commit

Permalink
fix python version + add matrix to osx
Browse files Browse the repository at this point in the history
  • Loading branch information
lldelisle committed Dec 6, 2023
1 parent 75e83c8 commit 74a6b3a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 74a6b3a

Please sign in to comment.