2021-02-06 00:38:16 +00:00
|
|
|
name: Tests
|
2021-02-07 15:27:31 +00:00
|
|
|
on: [push, pull_request]
|
2021-02-06 00:33:49 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
python-version: [3.8]
|
|
|
|
poetry-version: [1.1.4]
|
2021-03-20 17:59:33 +00:00
|
|
|
os: [ubuntu-20.04, macos-latest, windows-latest]
|
2021-02-06 00:33:49 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2021-02-07 15:27:31 +00:00
|
|
|
- uses: actions/checkout@v2 # get source
|
|
|
|
|
2021-02-06 00:33:49 +00:00
|
|
|
- name: Install Python 3
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2021-02-07 15:27:31 +00:00
|
|
|
|
|
|
|
- name: Install Poetry # dependency management
|
2021-02-06 00:33:49 +00:00
|
|
|
uses: abatilo/actions-poetry@v2.1.0
|
|
|
|
with:
|
|
|
|
poetry-version: ${{ matrix.poetry-version }}
|
2021-02-07 15:27:31 +00:00
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: poetry install
|
|
|
|
|
2021-03-20 17:59:33 +00:00
|
|
|
- name: Run Tests # test script
|
2021-02-07 15:27:31 +00:00
|
|
|
run: poetry run python -m unittest discover -s tests
|