Skip to content

Merge pull request #3 from const7/fix-pandas #10

Merge pull request #3 from const7/fix-pandas

Merge pull request #3 from const7/fix-pandas #10

Workflow file for this run

name: "run unit tests on github actions"
on:
push:
branches:
- "main"
pull_request:
branches:
- "*"
jobs:
run_tests:
name: ${{ matrix.os }} with Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.6", "3.8", "3.9"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
name: "setup python"
- name: "install tox"
run: |
pip install tox
- name: "run tests"
run: |
tox -e py