-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (55 loc) · 1.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: CI
on: push
jobs:
test:
name: Lint and Run
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install Python dependencies
run: pip install -r requirements.txt -r requirements_dev.txt
env:
PIP_PROGRESS_BAR: off
- name: Lint
run: make lint
- name: Typecheck
run: make typecheck
publish:
name: Publish
needs: test
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags')
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install pypa/build
run: pip install build
env:
PIP_PROGRESS_BAR: off
- name: Build distribution
run: make build
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: amti-islands
path: dist/
- name: Publish to TestPyPI
uses: pypa/[email protected]
with:
repository_url: https://test.pypi.org/legacy/
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
print_hash: true
- name: Publish to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API_TOKEN }}
print_hash: true