-
Notifications
You must be signed in to change notification settings - Fork 4
172 lines (135 loc) · 3.81 KB
/
release.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
name: Release
env:
PACKAGE: webgeocalc
PYTHON: 3.8
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
flake8:
name: Linter - flake8
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON }}
uses: actions/setup-python@v1
with:
python-version: ${{ env.PYTHON }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 flake8-colors flake8-docstrings flake8-import-order pep8-naming mccabe
- name: Run flake8
run: flake8 setup.py docs/conf.py $PACKAGE/ tests/
pylint:
name: Linter - Pylint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON }}
uses: actions/setup-python@v1
with:
python-version: ${{ env.PYTHON }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . pylint pytest
- name: Run pylint
run: pylint $PACKAGE/ tests/*.py
bandit:
name: Linter - Bandit
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON }}
uses: actions/setup-python@v1
with:
python-version: ${{ env.PYTHON }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install bandit
- name: Run bandit
run: |
bandit -r $PACKAGE
bandit -r tests --skip B101
tests:
name: Unit tests, coverage and notebooks
needs: [flake8, pylint]
runs-on: ubuntu-latest
env:
PYTEST_ADDOPTS: --color=yes
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON }}
uses: actions/setup-python@v1
with:
python-version: ${{ env.PYTHON }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest requests_mock pytest-cov codecov nbval
- name: Run unit-tests with coverage
run: pytest --cov=$PACKAGE tests/
- name: Push coverage to codecov
run: codecov
- name: Run jupyter notebook tests
run: pytest --nbval-lax examples/
docs:
name: Docs
needs: [flake8, pylint]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install . -r docs/requirements.txt
- name: Build docs
run: sphinx-build docs docs/_build --color -W -bhtml
- name: Run doctests in docstrings
run: sphinx-build docs docs/_build --color -W -bdoctest
pypi:
name: Deploy to PyPI
if: contains(github.ref, 'refs/tags/')
needs: [flake8, pylint, bandit, tests, docs]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON }}
uses: actions/setup-python@v1
with:
python-version: ${{ env.PYTHON }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build package
run: python setup.py sdist bdist_wheel
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: twine upload $PYPI_REPO dist/*
release:
name: Release to Github
needs: pypi
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}