-
Notifications
You must be signed in to change notification settings - Fork 9
69 lines (65 loc) · 2.11 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
name: Release Workflow
on:
release:
types: [published]
jobs:
build-test-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
env:
DEPLOY_TARGET: ${{ matrix.python-version == '3.8' }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Document python/os version
run: |
echo "Python V ${{ matrix.python-version }}"
echo "Targeted Deployment Combo? $DEPLOY_TARGET"
- name: Document branch
run: echo ${{ github.ref_name }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r dev-requirements.txt
- name: Lint
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install package
run: |
pip install -e .
- name: Test with pytest
run: |
pytest -s -m "not skipci"
- name: Configure Git user
if: ${{DEPLOY_TARGET}}
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Build docs
if: ${{DEPLOY_TARGET}}
run: |
mike deploy --push --rebase --update-aliases ${{ github.ref_name }} latest
- name: Install deployment dependencies
if: ${{DEPLOY_TARGET}}
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Publish to PyPI
if: ${{DEPLOY_TARGET}}
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*