Skip to content

Merge pull request #21 from cr0hn/patch-1 #21

Merge pull request #21 from cr0hn/patch-1

Merge pull request #21 from cr0hn/patch-1 #21

Workflow file for this run

name: CI Test
on:
push:
branches:
- main
pull_request:
branches:
- main
- nightly
- 'releases/*'
jobs:
Unit-Tests:
timeout-minutes: 10
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
python setup.py install
- name: Run Tests
run: pytest tests