-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (54 loc) · 1.6 KB
/
test.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: "Quality checks"
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
env:
# Many color libraries just need this to be set to any value, but at least
# one distinguishes color depth, where "3" -> "256-bit color".
FORCE_COLOR: 3
jobs:
typecheck:
name: "Typecheck"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"
- name: "Install package"
run: "python -m pip install .[test]"
- name: "Typecheck package"
run: "mypy"
test:
name: "Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}"
runs-on: "${{ matrix.runs-on }}"
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
runs-on: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
allow-prereleases: true
- name: "Install package"
run: "python -m pip install .[test]"
- name: "Test package"
# prettier-ignore
run: "python -m pytest -ra --durations=20 --cov --cov-report=xml --cov-report=term tests/unit"
- name: "Upload coverage report"
uses: "codecov/[email protected]"
with:
token: "${{ secrets.CODECOV_TOKEN }}"