feat: Adds jupyter notebook to run matcher #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python package | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# checks all of the versions allowed in pyproject.toml | |
python-version: [3.9, "3.10"] | |
steps: | |
# installs python | |
# one execution of the tests per version listed above | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# installs poetry | |
- uses: Gr1N/setup-poetry@v8 | |
- name: Setup Poetry | |
run: | | |
poetry install | |
- name: Run tox | |
run: | | |
poetry run tox |