pyenv/.github/workflows/ubuntu_tests.yml

36 lines
1.4 KiB
YAML
Raw Normal View History

name: ubuntu_tests
on: [pull_request, push]
jobs:
ubuntu_tests:
strategy:
fail-fast: false
matrix:
2021-02-23 12:32:44 -05:00
python-version: [2.7.18, 3.5.10, 3.6.13, 3.7.10, 3.8.8, 3.9.2] # 2.7.6, 3.4.10,
2021-02-23 08:35:19 -05:00
runs-on: Ubuntu-20.04
steps:
- uses: actions/checkout@v2
# Normally, we would use the superbly maintained...
# - uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# ... but in the repo, we want to test pyenv builds on Ubuntu
- run: |
2021-01-27 05:35:11 -05:00
sudo apt-get install -y build-essential libssl-dev zlib1g-dev libbz2-dev \
libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev \
xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
2021-02-24 04:31:10 -05:00
# https://github.com/pyenv/pyenv#installation
- run: echo "$HOME/.local/bin" >> $GITHUB_PATH
2021-02-24 04:31:10 -05:00
# - run: echo 'export PYENV_ROOT=$(pwd)' >> ~/.bash_profile
# - run: echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
- run: echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi' >> ~/.bash_profile
2021-02-24 04:40:14 -05:00
# - run: cd $(pyenv root) && git pull || true
2021-02-23 12:42:03 -05:00
- run: git pull
2021-02-24 04:40:14 -05:00
- env:
PYENV_ROOT: $HOME"
run: |
2021-02-24 04:31:10 -05:00
pyenv install ${{ matrix.python-version }}
pyenv global ${{ matrix.python-version }}
pyenv rehash
2021-02-24 04:07:52 -05:00
python --version
python -m pip --version