More fixes #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Conda env setup | |
run: | | |
curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh" | |
bash Miniforge3-$(uname)-$(uname -m).sh -b | |
cat ~/.bashrc | |
source ~/.bashrc | |
- name: Install cnv_facets | |
run: | | |
mamba create --yes -n cnv_facets | |
mamba activate cnv_facets | |
mamba install --yes -c bioconda -c conda-forge cnv_facets |