-
Notifications
You must be signed in to change notification settings - Fork 23
60 lines (54 loc) · 1.48 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
name: Python package
on:
push:
tags:
# Trigger the workflow on push of tags
- '*'
branches:
# Trigger the workflow on push to the master branch
- master
pull_request:
branches:
# Trigger the workflow on pull request targeting the master branch
- master
env:
target_python_version: 3.8
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox
publish:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{env.target_python_version}}
uses: actions/setup-python@v2
with:
python-version: ${{env.target_python_version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Build distributions
run: python setup.py sdist bdist_wheel --universal
- name: Upload release to pypi
uses: pypa/[email protected]
with:
password: ${{ secrets.pypi_password }}