created test_deploy_conda.yml workflow #1
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
jobs: | |
example-6: | |
name: Ex6 Mamba | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/[email protected] | |
with: | |
python-version: 3.10 | |
mamba-version: "*" | |
channels: conda-forge, defaults | |
channel-priority: true | |
activate-environment: anaconda-client-env | |
# environment-file: etc/example-environment.yml | |
- shell: bash -el {0} | |
run: | | |
conda info | |
conda list | |
conda config --show-sources | |
conda config --show | |
printenv | sort | |
- shell: bash -el {0} | |
run: mamba install jupyterlab |