add all suggestions to pyenv

This commit is contained in:
Sebastian Thiel
2020-04-12 14:04:12 +08:00
parent 071950db56
commit be34fc3ad1

View File

@@ -18,8 +18,11 @@ jobs:
- uses: actions/checkout@v2
- name: Prepare python
run: |
set -x
curl https://pyenv.run | bash
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
{ echo 'export PATH="$PYENV_ROOT/bin:$PATH"';
echo 'eval "$(pyenv init -)"';
echo 'eval "$(pyenv virtualenv-init -)"'; } >> ~/.bashrc
source ~/.bashrc
pyenv versions
pyenv install --skip-existing "${PYENV_VERSION}"