Skip to content

RLS: Prepare patsy 1.0.1 #108

RLS: Prepare patsy 1.0.1

RLS: Prepare patsy 1.0.1 #108

Workflow file for this run

name: Run Tox Tests
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
pandas-presence: ['with_pandas', 'without_pandas']
env:
PYTHON_VERSION: ${{ matrix.python-version }}
PANDAS_PRESENCE: ${{ matrix.pandas-presence }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
id: gha-python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
continue-on-error: true
- name: Install PyEnv
if: ${{ steps.gha-python.outcome == 'failure' }}
run: |
curl https://pyenv.run | bash
PYENV_ROOT="$HOME/.pyenv"
echo "$PYENV_ROOT/bin" >> $GITHUB_PATH
echo "$PYENV_ROOT/shims" >> $GITHUB_PATH
echo "PYENV_ROOT=$PYENV_ROOT" >> $GITHUB_ENV
- name: Install Python ${{ matrix.python-version }} using PyEnv
if: ${{ steps.gha-python.outcome == 'failure' }}
run: |
pyenv install "${{ matrix.python-version }}"
pyenv local "${{ matrix.python-version }}"
pyenv versions
- name: Install dependencies
run: |
pip install -U pip
pip install tox tox-gh-actions
- name: Test with tox
run: |
PYTHON_ENV="py$(echo $PYTHON_VERSION | sed 's/\.//;s/\-dev//')"
tox -e "${PYTHON_ENV}-${PANDAS_PRESENCE}"
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
file: ./coverage.xml
flags: unittests
env_vars: PYTHON_VERSION,PANDAS_PRESENCE