Skip to content

added test for v7

added test for v7 #48

name: Python Package Using Anaconda
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Miniconda
uses: conda-incubator/[email protected]
with:
auto-update-conda: true
activate-environment: test
environment-file: .github/environment.yml
python-version: 3.9
auto-activate-base: false
- shell: bash -l {0}
run: |
conda info
conda list
- name: Build conda pkg
shell: bash -l {0}
run: |
conda mambabuild .
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: conda-pkgs
path: /usr/share/miniconda/envs/test/conda-bld/linux-64/*.tar.bz2