Skip to content

Commit

Permalink
actions: Update to conda-incubator/setup-miniconda3.
Browse files Browse the repository at this point in the history
  • Loading branch information
wwood committed May 23, 2024
1 parent 90b053d commit c0eb05f
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/test-coverm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,50 @@ on: [push, pull_request]

jobs:
miniconda_linux:
name: Miniconda ${{ matrix.os }}
name: Miniconda (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
os: ["ubuntu-latest"]
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: coverm.yml
auto-activate-base: false
mamba-version: "*"
channels: conda-forge,defaults,bioconda
- run: |
conda info
conda list
- name: Conda info
shell: bash -el {0}
run: conda info
- name: Conda list
shell: pwsh
run: conda list
- name: Run test
run: |
cargo test
miniconda_osx:
name: Miniconda ${{ matrix.os }}
name: miniconda_osx (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
os: ["macos-latest"]
fail-fast: false
matrix:
os: ["macos-latest"]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
auto-update-conda: true
python-version: ${{ matrix.python-version }}
environment-file: coverm-osx.yml
auto-activate-base: false
mamba-version: "*"
channels: conda-forge,defaults,bioconda
- run: |
conda info
conda list
- name: Conda info
shell: bash -el {0}
run: conda info
- name: Conda list
shell: pwsh
run: conda list
- name: Run test
run: |
cargo test -- --skip bwa_mem2
cargo test -- --skip bwa_mem2

0 comments on commit c0eb05f

Please sign in to comment.