-
Notifications
You must be signed in to change notification settings - Fork 34
76 lines (73 loc) · 2.16 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
67
68
69
70
71
72
73
74
75
76
name: test
on:
pull_request:
push:
branches:
- main
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.12"
- run: pip install pre-commit
- uses: actions/cache@v3
id: pre-commit-cache
with:
path: ~/.cache/pre-commit
key: key-0
- run: pre-commit run --all-files
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.8.18", "3.9.19", "3.10.14", "3.11.9", "3.12.4" ]
# Ideally we would test starlette versions, not FastAPI,
# but our test suite currently uses FastAPI comprehensively,
# so we would need to redo that first.
fastapi-version: [ "0.109", "0.110", "0.111"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- uses: actions/cache@v3
id: poetry-cache
with:
path: ~/.local
key: ${{ matrix.python-version }}-1
- uses: snok/install-poetry@v1
with:
virtualenvs-create: false
version: latest
- uses: actions/cache@v3
id: cache-venv
with:
path: .venv
key: ${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}-1
- run: |
python -m venv .venv
source .venv/bin/activate
pip install -U pip
poetry add fastapi==${{ matrix.fastapi-version }}
poetry install --no-interaction --no-root
if: steps.cache-venv.outputs.cache-hit != 'true'
- run: |
python -m venv .venv
source .venv/bin/activate
pip install importlib-metadata==4.13.0
if: matrix.python-version == '3.7.14'
- name: Run tests
run: |
source .venv/bin/activate
coverage run -m pytest tests
coverage xml
coverage report
- uses: codecov/codecov-action@v2
with:
file: ./coverage.xml
fail_ci_if_error: true
if: matrix.python-version == '3.10.6'