-
-
Notifications
You must be signed in to change notification settings - Fork 26
142 lines (113 loc) · 3.25 KB
/
main.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: "actions/setup-python@v3"
with:
python-version: "3.8"
- name: "Install dependencies"
run: python -m pip install -r requirements/pkgutils.txt
- name: "Run pyupgrade"
run: pyupgrade --py37-plus **/*.py
- name: "Run flake8"
run: flake8
- name: "Run isort"
run: isort --check .
- name: "Run black"
run: black --check .
- name: "Run mypy"
run: mypy
docs:
name: "Build Documentation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: "actions/setup-python@v3"
with:
python-version: "3.8"
- name: "Install dependencies"
run: |
python -m pip install -r requirements/docs.txt
python -m pip install .
- name: "Run Sphinx"
run: sphinx-build -W --keep-going -b html docs _build
tests:
name: "Python ${{ matrix.python-version }}"
needs:
- lint
- docs
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]
steps:
- uses: actions/checkout@v2
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade "tox<4" "tox-gh-actions<3"
- name: "Run tox targets for ${{ matrix.python-version }}"
env:
TOX_SKIP_ENV: ".*celerymaster.*|.*integration.*"
run: "python -m tox"
- name: "Run tox targets for ${{ matrix.python-version }} for celery master"
env:
TOX_SKIP_ENV: ".*celery[^m].*|.*integration.*"
run: "python -m tox"
continue-on-error: true
integration-tests:
name: "Integration tests"
needs: lint
runs-on: ubuntu-latest
services:
rabbitmq:
image: rabbitmq
# Set health checks to wait until redis has started
options: >-
--health-cmd "rabbitmq-diagnostics -q status"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5672:5672
redis:
image: redis
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v2
- uses: "actions/setup-python@v2"
with:
python-version: "3.x"
- name: "Install dependencies"
run: |
set -xe
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade "tox<4" "tox-gh-actions<3"
- name: "Run tox targets"
env:
TOX_SKIP_ENV: ".*unit.*|flake8"
run: "python -m tox"