-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (61 loc) · 1.69 KB
/
Copy pathci.yml
File metadata and controls
66 lines (61 loc) · 1.69 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
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
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