-
Notifications
You must be signed in to change notification settings - Fork 0
95 lines (88 loc) · 2.47 KB
/
ci.yml
File metadata and controls
95 lines (88 loc) · 2.47 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
95
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pip install -e '.[dev]'
- run: ruff check src/ tests/
- run: mypy src/durable_workflow/
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e '.[dev]'
- run: pytest tests/ -m "not integration" -q
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pip install build twine
- run: python -m build
- run: twine check dist/*
- run: python scripts/smoke-built-package.py
cli-parity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
path: sdk-python
- uses: actions/checkout@v6
with:
repository: durable-workflow/cli
path: cli
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Compare shared control-plane parity fixtures
working-directory: sdk-python
run: python scripts/check-cli-parity.py --cli ../cli
integration:
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- uses: actions/checkout@v6
with:
path: sdk-python
- uses: actions/checkout@v6
with:
repository: durable-workflow/server
path: server
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pip install -e '.[dev]'
working-directory: sdk-python
- name: Start server stack
working-directory: sdk-python
run: |
docker compose -f docker-compose.test.yml up -d --wait --timeout 120
- name: Run integration tests
working-directory: sdk-python
env:
DURABLE_WORKFLOW_SERVER_URL: http://localhost:8080
DURABLE_WORKFLOW_AUTH_TOKEN: test-token
run: pytest tests/integration/ -v
- name: Teardown
if: always()
working-directory: sdk-python
run: docker compose -f docker-compose.test.yml down -v