Merge pull request #249 from frreiss/pandas2 #269
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: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
inputs: | |
target: | |
description: 'Target branch to run' | |
required: true | |
jobs: | |
run_python: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.7, 3.8, 3.9] | |
# Test against Pandas 1.2, 1.3, and latest version | |
pandas-version: ["1.2.*", "1.3.*", ""] | |
exclude: | |
# Test all Pandas versions with Python 3.8, exclude others | |
- python-version: 3.7 | |
pandas-version: "1.1.*" | |
- python-version: 3.7 | |
pandas-version: "1.2.*" | |
- python-version: 3.8 | |
pandas-version: "1.1.*" | |
- python-version: 3.8 | |
pandas-version: "1.2.*" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: 'x64' | |
- name: Setup Conda Environment | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
PANDAS_VERSION: ${{ matrix.pandas-version }} | |
run: | | |
echo "Conda base path: ${CONDA}" | |
hash -r | |
source "${CONDA}/etc/profile.d/conda.sh" | |
$CONDA/bin/conda config --set always_yes yes --set changeps1 no | |
$CONDA/bin/conda update -q conda | |
$CONDA/bin/conda info -a | |
CONDA_HOME="${CONDA}" ./env.sh --use_active_env | |
- name: Print installed packages | |
run: | | |
conda list | |
pip list | |
which python | |
which pytest | |
- name: Test with pytest | |
run: | | |
pytest -v text_extensions_for_pandas |