Skip to content

feat(PAT-): ?

feat(PAT-): ? #20

Workflow file for this run

---
name: Test
on:
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: windows-latest
env:
SOURCES_DIR: sources
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
steps:
-
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
-
uses: actions/checkout@v2
-
name: Install dependencies
run: |
python -m pip install poetry==1.1.7
poetry install
-
name: pytest
run: poetry run pytest -vv