-
Notifications
You must be signed in to change notification settings - Fork 54
46 lines (37 loc) · 1.05 KB
/
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
40
41
42
43
44
45
46
name: tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
tests:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.9"
- "3.12"
include:
- python-version: "pypy-3.9"
os: ubuntu-latest
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
architecture: x64
- name: "Install"
run: pip install -q -e .[all] && pip freeze --all
- name: "Run tests for ${{ matrix.python-version }} on ${{ matrix.os }}"
run: python -m pytest --durations=10
- name: Upload coverage to Codecov
uses: "codecov/codecov-action@main"
- name: "Run type check for ${{ matrix.python-version }} on ${{ matrix.os }}"
run: python -m mypy .