-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (52 loc) · 1.56 KB
/
pip-install.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
name: pip-install
on:
release:
types:
- published
jobs:
build:
name: ${{ matrix.os }}:${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: ${{ matrix.python }}
- name: Build
run: |
python -m pip install -U pip pep517 twine setuptools_scm
python -m pep517.build .
- name: Test the sdist
run: |
python -m venv venv-sdist
venv-sdist/bin/python -m pip install dist/multiplanet*.tar.gz
venv-sdist/bin/python -c "import multiplanet; print(multiplanet.__version__)"
- name: Test the wheel
run: |
python -m venv venv-wheel
venv-wheel/bin/python -m pip install dist/multiplanet*.whl
venv-wheel/bin/python -c "import multiplanet; print(multiplanet.__version__)"
- uses: actions/upload-artifact@v3
with:
path: dist/*
upload_pypi:
needs: [build]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_password }}