2019-12-27 10:10:47 +00:00
|
|
|
name: Test Rich module
|
2019-12-25 15:27:53 +00:00
|
|
|
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
2019-12-25 15:59:14 +00:00
|
|
|
python-version: [3.6, 3.7, 3.8]
|
2019-12-25 15:27:53 +00:00
|
|
|
|
|
|
|
steps:
|
2019-12-25 15:37:28 +00:00
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
|
|
|
- name: Typecheck with mypy
|
|
|
|
run: |
|
|
|
|
pip install mypy
|
2019-12-27 10:08:22 +00:00
|
|
|
make typecheck
|
2019-12-25 15:37:28 +00:00
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
2019-12-25 15:50:04 +00:00
|
|
|
pip install poetry pytest
|
2019-12-25 15:45:12 +00:00
|
|
|
poetry install
|
2019-12-25 15:57:26 +00:00
|
|
|
pip install .
|
2019-12-25 15:50:04 +00:00
|
|
|
pytest tests/ -v
|