-
Notifications
You must be signed in to change notification settings - Fork 0
110 lines (96 loc) · 2.77 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# vim: et
on:
push:
jobs:
tests:
name: Run PyTest and Bandit
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Prepare pip
run: |
python -m pip install --upgrade pip
- name: Install prerequistes for testing
run: |
python -m pip install .[test]
- name: Run tests
run: |
pytest
- name: Run Bandit
run: |
bandit -r src
linting:
name: Run MyPy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Prepare pip
run: |
python -m pip install --upgrade pip
- name: Install prerequistes for testing
run: |
python -m pip install .[test]
- name: Run MyPy
run: |
mypy --package stanford.mais
publish-test:
name: Publish pushes to PyPi's test instance
if: github.event_name == 'push'
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Prepare pip and install build
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Make the version number unique
run: |
python update-version-for-test-push.py
- name: Build source and wheel distributions
run: |
python -m build .
- name: Publish pushes to PyPI test
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_UPLOAD_TEST }}
repository_url: https://test.pypi.org/legacy/
publish-prod:
name: Publish tags to PyPi production
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
needs: [tests, linting]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Prepare pip and install build
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build source and wheel distributions
run: |
python -m build .
- name: Publish tags to PyPI production
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_UPLOAD_PROD }}