Skip to content

Change-point tests #1305

Change-point tests

Change-point tests #1305

name: Unit tests (python versions)
on:
push:
branches:
- master
pull_request:
# Run workflow when PR is changed, or when changed from draft to ready
types: [opened, synchronize, reopened, ready_for_review]
branches:
- '**'
jobs:
build-and-test:
name: Python unit tests
runs-on: ubuntu-latest
# Skip job if it's a draft PR
if: github.event.pull_request.draft == false
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: install pints
run: |
python --version
python -m pip install --upgrade pip setuptools wheel
python -m pip install .[stan]
- name: run unit tests
run: |
python run-tests.py --unit