-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (40 loc) · 953 Bytes
/
cd.yml
File metadata and controls
45 lines (40 loc) · 953 Bytes
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
name: Deploy
on:
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
jobs:
run-ci:
uses: ./.github/workflows/ci.yml
secrets: inherit
deploy:
needs: run-ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.7'
- name: Update pip
run: |
python -m pip install --upgrade pip
- name: Mypy check
run: |
pip install mypy
mypy --python-version 3.7 src/
- name: Test
run: |
pip install pytest
pytest src/tsidpy/*.py --doctest-modules
- name: Build package
run: |
pip install build
python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}