Skip to content

Add stroke and classification fields to enable finer grained searching #946

Add stroke and classification fields to enable finer grained searching

Add stroke and classification fields to enable finer grained searching #946

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
platform: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install '.[qa]'
pip install mypy pytest
- name: Run Tests
run: |
pytest tests
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3