forked from Flagsmith/flagsmith
-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (71 loc) · 1.83 KB
/
api-pull-request.yml
File metadata and controls
88 lines (71 loc) · 1.83 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
name: API Pull Request
permissions:
contents: read # For actions/checkout
id-token: write # For Codecov OIDC
on:
pull_request:
paths:
- api/**
- docker/api/**
- .github/**
- .release-please-manifest.json
types: [opened, synchronize, reopened, ready_for_review]
push:
paths:
- api/**
- docker/api/**
- .github/**
- .release-please-manifest.json
branches:
- main
defaults:
run:
working-directory: api
env:
DOTENV_OVERRIDE_FILE: .env-ci
jobs:
test:
runs-on: depot-ubuntu-latest-16
name: API Unit Tests
strategy:
max-parallel: 3
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- name: Cloning repo
uses: actions/checkout@v5
- name: Install Poetry
run: make install-poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install Dependencies
run: make install-packages
- name: Check for missing migrations
env:
opts: --no-input --dry-run --check
run: make django-make-migrations
- uses: liskin/gh-problem-matcher-wrap@v2
with:
action: add
linters: mypy
- name: Check for new typing errors
run: make typecheck
- uses: liskin/gh-problem-matcher-wrap@v2
with:
action: remove
linters: mypy
- name: Check autogenerated documentation
uses: nickcharlton/diff-check@v1.0.0
with:
command: make -C api generate-docs
- name: Run Tests
run: make test
- name: Upload Coverage
uses: codecov/codecov-action@v5
env:
PYTHON: ${{ matrix.python-version }}
with:
env_vars: PYTHON
use_oidc: true