Skip to content

Replace conda install in github CI by actions/setup-python@v2 #1079

@vfdev-5

Description

@vfdev-5

🚀 Feature

In order to accelerate env and dependencies installation we can opt to replace:

- name: Setup Conda
run: |
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda
export PATH="$HOME/miniconda/bin:$PATH"
conda config --set always_yes yes --set changeps1 no
conda update -q conda

by
- name: Set up Python 3.6
uses: actions/setup-python@v2
with:
python-version: '3.6'
architecture: 'x64'

with correct python version

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions