-
Notifications
You must be signed in to change notification settings - Fork 2
89 lines (74 loc) · 2.17 KB
/
build_test.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
name: CI
on:
push:
pull_request:
schedule:
#At the end of every day
- cron: 0 0 * * *
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
- 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 setuptools wheel --upgrade
python -m pip install --upgrade flake8 coverage pytest pytest-cov cython codecov numpy numba tempita
pip3 install git+https://github.com/threeML/astromodels.git@dev#egg=astromodels
python setup.py install
- name: Lint with flake8
run: |
flake8 ronswanson
- name: Test with pytest
run: |
python -m pytest -vv --cov=ronswanson/ --cov-report=xml
env:
NUMBA_DISABLE_JIT: 0
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
files: ./coverage1.xml,./coverage2.xml
directory: ./coverage/reports/
package:
name: Build & verify package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install twine
run: python -m pip install twine
- name: Build package
run: python setup.py sdist
- name: List result
run: ls -l dist
- name: Check long_description
run: python -m twine check dist/*
publish:
needs: build
runs-on: ubuntu-latest
name: Publish package
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install twine
run: python -m pip install twine
- name: Build package
run: python setup.py sdist
- uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}