Skip to content

Commit

Permalink
try mamba-org/setup-micromamba@v1
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Aug 10, 2023
1 parent 519c51d commit 8f4d646
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,29 @@ jobs:
python-version: ['3.10'] # ['3.8', '3.10']
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
- uses: mamba-org/setup-micromamba@v1
with:
auto-update-conda: false
python-version: ${{ matrix.python-version }}
miniconda-version: "latest"
mamba-version: "1.4.4"
channels: conda-forge,bioconda
channel-priority: true
auto-activate-base: false
environment-file: environment.yml
activate-environment: bakta
micromamba-version: 'latest'
environment-name: 'bakta'
environment-file: 'environment.yml'
create-args: python=${{ matrix.python-version }}
condarc: |
channels:
- conda-forge
- bioconda
init-shell: bash -l {0}
cache-environment: true
cache-downloads: true
post-cleanup: 'all'
# - name: Install DeepSig
# if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.8'}}
# run: conda install numpy=1.23 keras=2.4.3 tensorflow=2.2.0 chardet deepsig
# run: mamba install numpy=1.23 keras=2.4.3 tensorflow=2.2.0 chardet deepsig
- name: Install PyTest
run: conda install pytest
- name: Conda info
run: mamba install pytest
- name: Mamba info
run: |
conda info
conda list
conda config --show
mamba info
mamba list
printenv | sort
- name: Run PyTest
if: ${{ matrix.os == 'ubuntu-latest' || matrix.python-version == '3.10'}}
Expand Down

0 comments on commit 8f4d646

Please sign in to comment.