Skip to content

updated test_deploy_conda.yml #3

updated test_deploy_conda.yml

updated test_deploy_conda.yml #3

name: Test and Publish
on:
push:
branches:
- main
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
pull_request:
branches:
- main
jobs:
example-6:
name: Ex6 Mamba
runs-on: ${{ matrix.platform }}
defaults:
run:
shell: bash -el {0}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/[email protected]
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: ff
python-version: ${{ matrix.python-version }}
channels: pytorch, conda-forge, defaults
channel-priority: true
use-only-tar-bz2: true
environment-file: env_cpu.yml
- name: Conda info
run: conda info
- name: Jupyter
run: conda install jupyterlab