-
Notifications
You must be signed in to change notification settings - Fork 22
39 lines (31 loc) · 932 Bytes
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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.8", "3.9", "3.10", "3.11", "3.12"]
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