-
-
Notifications
You must be signed in to change notification settings - Fork 9.2k
80 lines (76 loc) · 2.07 KB
/
python.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
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
name: Testing Platform
on:
pull_request:
branches: [ "main" ]
paths:
- 'platform/**'
env:
PYTHON_VERSION: "3.11"
jobs:
black:
runs-on: ubuntu-latest
defaults:
run:
working-directory: platform
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'poetry'
- run: poetry install
- name: Run black check
run: poetry run black --check .
mypy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: platform
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'poetry'
- run: poetry install
- name: Run mypy check
run: poetry run mypy .
pytest:
runs-on: ubuntu-latest
defaults:
run:
working-directory: platform
services:
reworkd_platform-db:
image: bitnami/mysql:8.0.30
env:
MYSQL_ROOT_PASSWORD: "reworkd_platform"
MYSQL_ROOT_USER: "reworkd_platform"
MYSQL_DATABASE: "reworkd_platform"
MYSQL_AUTHENTICATION_PLUGIN: "mysql_native_password"
options: >-
--health-cmd="mysqladmin ping -u root"
--health-interval=15s
--health-timeout=5s
--health-retries=6
ports:
- 3306:3306
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'poetry'
- run: poetry install
- name: Run pytest check
run: poetry run pytest -vv --cov="reworkd_platform" .
env:
REWORKD_PLATFORM_HOST: "0.0.0.0"
REWORKD_PLATFORM_DB_HOST: localhost
REWORKD_PLATFORM_KAFKA_BOOTSTRAP_SERVERS: '["localhost:9092"]'