CI(GHActions): Switch to setup-miniconda
#31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | ||
on: [push, pull_request] | ||
jobs: | ||
run-tests: | ||
env: | ||
not_in_conda: "[]" | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "=3.9[build=*_pypy]"] | ||
include: | ||
- os: ubuntu-latest | ||
os-name: Linux | ||
pip-cache-path: ~/.cache/pip | ||
- os: windows-latest | ||
os-name: w32 | ||
pip-cache-path: ~\AppData\Local\pip\Cache | ||
name: Python ${{ matrix.python-version }} @ ${{ matrix.os-name }} | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
# Setup Python/pip | ||
- uses: actions/checkout@v4 | ||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
miniforge-version: latest | ||
python-version: ${{ matrix.python-version }} | ||
if: ${{ !contains(fromJSON(env.not_in_conda), matrix.python-version) }} | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
if: ${{ contains(fromJSON(env.not_in_conda), matrix.python-version) }} | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/conda_pkgs_dir | ||
key: ${{ runner.os }}-conda | ||
- name: Cache pip | ||
uses: actions/cache@v3 | ||
with: | ||
path: ${{ matrix.pip-cache-path }} | ||
key: ${{ runner.os }}-pip | ||
# Setup tox | ||
- name: Install dependencies | ||
run: | | ||
python --version | ||
python -m pip || python -m ensurepip --default-pip --upgrade | ||
python -m pip install --upgrade pip setuptools wheel | ||
pip --version | ||
pip install --upgrade virtualenv "tox >= 3.15, < 4" | ||
shell: ${{ runner.os = 'Windows' && 'cmd /C call {0}' || 'bash -el {0}' }} | ||
Check failure on line 57 in .github/workflows/run-tests.yaml
|
||
- name: Set TOXENV | ||
run: | | ||
python -c " | ||
import os, sys | ||
ld_library_path = None | ||
if hasattr(sys, 'pypy_version_info'): | ||
toxenv = 'pypy3' | ||
else: | ||
pyver = '%d%d' % tuple(sys.version_info[:2]) | ||
if (pyver == '27') and (os.name == 'posix'): # Python 2.7 on Linux requires `$LD_LIBRARY_PATH` | ||
ld_library_path = os.path.join( | ||
os.path.dirname(os.path.dirname(sys.executable)), 'lib') | ||
toxenv = 'py%s' % pyver | ||
if os.name == 'posix': | ||
toxenv += ',py%s-flake8' % pyver | ||
with open(os.environ['GITHUB_ENV'], 'a') as f: | ||
if ld_library_path: | ||
f.write('LD_LIBRARY_PATH=' + ld_library_path + '\n') | ||
f.write('TOXENV=' + toxenv + '\n') | ||
" | ||
shell: ${{ runner.os = 'Windows' && 'cmd /C call {0}' || 'bash -el {0}' }} | ||
- name: Run tox | ||
run: | | ||
python -c "import os; print(os.environ['TOXENV'])" | ||
tox --version | ||
tox | ||
shell: ${{ runner.os = 'Windows' && 'cmd /C call {0}' || 'bash -el {0}' }} |