Skip to content

Merge pull request #169 from slashformotion/patch-1 #309

Merge pull request #169 from slashformotion/patch-1

Merge pull request #169 from slashformotion/patch-1 #309

Workflow file for this run

name: tests
on:
push:
branches: [main]
tags: v*
pull_request:
jobs:
run_tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Prepare project for development
run: |
python -m pip install poetry
python -m poetry install
- name: Run tests
run: |
# tests run git commands, and they need
# a proper git identity for that
git config --global user.email "[email protected]"
git config --global user.name "Tasty Test"
python -m poetry run pytest --cov . --cov-report term