Skip to content

feat: add option to optimize for average case (#49) #93

feat: add option to optimize for average case (#49)

feat: add option to optimize for average case (#49) #93

Workflow file for this run

name: Test
on:
pull_request:
branches:
- develop
push:
branches:
- develop
- master
- release/*
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install from source
run: |
python -m pip install --upgrade pip
pip install .
- name: Test with pytest
run: |
pip install pytest
pytest tests/