This repository has been archived by the owner on Feb 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 336
155 lines (149 loc) · 4.21 KB
/
ci.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
143
144
145
146
147
148
149
150
151
152
153
154
155
name: CI
on:
push:
branches:
- master
- '[0-9].[0-9]+' # matches to backport branches, e.g. 3.6
tags: [ 'v*' ]
pull_request:
branches:
- master
- '[0-9].[0-9]+'
- 'update/pre-commit-autoupdate'
schedule:
- cron: '0 6 * * *' # Daily 6AM UTC build
jobs:
lint:
name: Linter
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Cache PyPI
uses: actions/[email protected]
with:
key: pip-lint-${{ hashFiles('**/requirements.txt') }}
path: ~/.cache/pip
restore-keys: |
pip-lint-
- name: Install dependencies
uses: py-actions/py-dependency-install@v3
with:
path: tests/requirements.txt
- name: Run mypy
run: |
pip install -U setuptools
pip install -r tests/requirements-mypy.txt
mypy
- name: Run linter
run: |
make lint
- name: Prepare twine checker
run: |
pip install -U twine wheel
python setup.py sdist bdist_wheel
- name: Run twine checker
run: |
twine check dist/*
test-unix:
name: Test Unix
needs: lint
strategy:
matrix:
os: [ubuntu-latest]
pyver: ["3.6", "3.7", "3.8", "3.9", "3.10", pypy3]
uvloop: [uvloop, no-uvloop]
redis: [5.0.10, 6.2.4]
exclude:
- { pyver: pypy3, uvloop: uvloop, os: ubuntu-latest, redis: 5.0.10 }
- { pyver: pypy3, uvloop: uvloop, os: ubuntu-latest, redis: 6.2.4 }
- { pyver: 3.6, uvloop: uvloop, os: ubuntu-latest, redis: 5.0.10 }
- { pyver: 3.6, uvloop: uvloop, os: ubuntu-latest, redis: 6.2.4 }
fail-fast: false
services:
redis:
image: redis:${{ matrix.redis }}
ports:
# Maps port 6379 on service container to the host
- 6379:6379
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
runs-on: ${{ matrix.os }}
timeout-minutes: 15
env:
OS: ${{ matrix.os }}
INSTALL_DIR: ${{ github.workspace }}/redis
PYTEST_ADDOPTS: --${{ matrix.uvloop }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python ${{ matrix.pyver }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.pyver }}
- name: Get pip cache dir
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
- name: Cache PyPI
uses: actions/[email protected]
with:
key: pip-ci-${{ runner.os }}-${{ matrix.pyver }}-${{ hashFiles('**/requirements.txt') }}
path: ${{ steps.pip-cache.outputs.dir }}
restore-keys: |
pip-ci-${{ runner.os }}-${{ matrix.pyver }}
- name: Install dependencies
uses: py-actions/py-dependency-install@v3
with:
path: tests/requirements.txt
- name: Install uvloop
if: ${{ matrix.uvloop == 'uvloop' }}
run: pip install uvloop
- name: Install Self
run: |
pip install -e . -c tests/requirements.txt
- name: Run unittests (${{ matrix.uvloop }}, ${{ matrix.os }})
run: |
make ci-test
python -m coverage xml
- name: Upload coverage
uses: codecov/[email protected]
with:
file: ./coverage.xml
flags: unit
env_vars: OS
fail_ci_if_error: false
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: test-unix
# Run only on pushing a tag
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run:
python -m pip install -U pip wheel twine
- name: Make dists
run:
python setup.py sdist bdist_wheel
- name: PyPI upload
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
twine upload dist/*