8000 Merge branch 'main' into switch-to-skani-cli · wwood/galah@5b5084b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge branch 'main' into switch-to-skani-cli #96

Merge branch 'main' into switch-to-skani-cli

Merge branch 'main' into switch-to-skani-cli #96

Workflow file for this run

name: Test Galah with Setup-Miniconda From Marketplace
on: [push, pull_request]
jobs:
miniconda:
name: Miniconda ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
environment-file: galah.yml
auto-activate-base: false
channels: conda-forge,defaults,bioconda
- run: |
conda info
conda list
- name: Run test
run: |
cargo test
0