-
Notifications
You must be signed in to change notification settings - Fork 47
94 lines (73 loc) · 2.26 KB
/
ci.yml
File metadata and controls
94 lines (73 loc) · 2.26 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
89
90
91
92
93
94
name: Quality control checks
on:
push:
branches: [main, "feat/**"]
paths-ignore:
- "**.md" # Do not need to run CI for markdown changes.
pull_request:
branches: [main, "feat/**"]
paths-ignore:
- "**.md"
jobs:
linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: launchdarkly/gh-actions/actions/persistent-stores@mk/sdk-1516/fix-consul
with:
redis: true
consul: true
dynamodb: true
- name: Install poetry
uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
- uses: ./.github/actions/build
- uses: ./.github/actions/build-docs
- name: Run tests
run: make test-all
- name: Verify typehints
run: make lint
#
# SDK contract tests
#
- name: install contract test dependencies
run: make install-contract-tests-deps
- name: start contract test service
run: make start-contract-test-service-bg
- uses: launchdarkly/gh-actions/actions/contract-tests@contract-tests-v1
with:
test_service_port: 9000
token: ${{ secrets.GITHUB_TOKEN }}
windows:
runs-on: windows-latest
defaults:
run:
shell: powershell
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: launchdarkly/gh-actions/actions/persistent-stores@mk/sdk-1516/fix-consul
with:
redis: true
consul: true
dynamodb: true
- name: Install poetry
uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
- name: Install requirements
run: poetry install --all-extras
- name: Run tests
run: make test-all