-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (49 loc) · 1.23 KB
/
fastapi-ci.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
name: fastapi ci
on:
push:
branches:
- main
paths:
- 'integrations/fastapi/**'
- '.github/workflows/fastapi-ci.yml'
pull_request:
paths:
- 'integrations/fastapi/**'
- '.github/workflows/fastapi-ci.yml'
defaults:
run:
working-directory: integrations/fastapi
concurrency:
group: ${{ github.head_ref || github.run_id }} fastapi
cancel-in-progress: false
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
- uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- run: uv python install 3.10
- run: just install lint-ci
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
- uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- run: uv python install ${{ matrix.python-version }}
- run: just install test . --cov=. --cov-report xml