Skip to content

Moved unit_conversions.py from schimpy to vtools #88

Moved unit_conversions.py from schimpy to vtools

Moved unit_conversions.py from schimpy to vtools #88

name: Python Package using Conda
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Conda build package and upload to anaconda.org
env:
ANACONDA_CHANNEL_UPLOAD_TOKEN: ${{ secrets.ANACONDA_CHANNEL_UPLOAD_TOKEN }}
run: |
conda create -n test_vtools3 -y conda-build conda-verify numpy anaconda-client
source $CONDA/etc/profile.d/conda.sh
conda activate test_vtools3
conda config --set anaconda_upload yes
conda build --user cadwr-dms --token "$ANACONDA_CHANNEL_UPLOAD_TOKEN" conda.recipe
conda activate
conda remove -n test_vtools3 --all