2021-01-27 10:33:06 +00:00
|
|
|
name: ubuntu_tests
|
|
|
|
on: [pull_request, push]
|
|
|
|
jobs:
|
|
|
|
ubuntu_tests:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-05-04 12:48:39 +00:00
|
|
|
python-version:
|
|
|
|
- 2.7.18
|
|
|
|
- 3.5.10
|
|
|
|
- 3.6.13
|
|
|
|
- 3.7.10
|
|
|
|
- 3.8.10
|
|
|
|
- 3.9.5
|
2021-09-08 14:28:25 +00:00
|
|
|
- 3.10.0rc2
|
2021-02-23 13:35:19 +00:00
|
|
|
runs-on: Ubuntu-20.04
|
2021-01-27 10:33:06 +00:00
|
|
|
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 10:35:11 +00: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 \
|
2021-01-27 10:33:06 +00:00
|
|
|
xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
|
2021-02-24 09:31:10 +00:00
|
|
|
# https://github.com/pyenv/pyenv#installation
|
2021-02-24 11:07:27 +00:00
|
|
|
- run: pwd
|
2021-03-02 11:54:20 +00:00
|
|
|
- env:
|
|
|
|
PYENV_ROOT: /home/runner/work/pyenv/pyenv
|
|
|
|
run: |
|
|
|
|
echo $PYENV_ROOT
|
|
|
|
echo "$PYENV_ROOT/shims:$PYENV_ROOT/bin" >> $GITHUB_PATH
|
2021-03-02 11:49:09 +00:00
|
|
|
bin/pyenv install ${{ matrix.python-version }}
|
|
|
|
bin/pyenv global ${{ matrix.python-version }}
|
|
|
|
bin/pyenv rehash
|
2021-03-02 11:23:44 +00:00
|
|
|
- run: python --version
|
|
|
|
- run: python -m pip --version
|
2021-03-03 12:26:08 +00:00
|
|
|
- shell: python # Prove that actual Python == expected Python
|
|
|
|
env:
|
|
|
|
EXPECTED_PYTHON: ${{ matrix.python-version }}
|
|
|
|
run: import os, sys ; assert sys.version.startswith(os.getenv("EXPECTED_PYTHON"))
|