-
Notifications
You must be signed in to change notification settings - Fork 0
102 lines (95 loc) · 2.69 KB
/
build-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
name: Build Main
on:
push:
branches:
- main
schedule:
# <minute [0,59]> <hour [0,23]> <day of the month [1,31]> <month of the year [1,12]> <day of the week [0,6]>
# https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07
# Run every Monday at 18:00:00 UTC (Monday at 10:00:00 PST)
- cron: '0 18 * * 1'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Setup MiniConda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.9
channels: readdy/label/dev,conda-forge
- name: Install Conda Deps
shell: bash -l {0}
run: |
conda install readdy
- name: Install Dependencies
shell: bash -l {0}
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Test with pytest
shell: bash -l {0}
run: |
pytest --cov-report xml --cov=vivarium_readdy vivarium_readdy/tests/
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup MiniConda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.9
channels: readdy/label/dev,conda-forge
- name: Install Conda Deps
shell: bash -l {0}
run: |
conda install readdy
- name: Install Dependencies
shell: bash -l {0}
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Lint with flake8
shell: bash -l {0}
run: |
flake8 vivarium_readdy --count --verbose --show-source --statistics
- name: Check with black
shell: bash -l {0}
run: |
black --check vivarium_readdy
publish:
if: "contains(github.event.head_commit.message, 'Bump version')"
needs: [test, lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup MiniConda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.9
channels: readdy/label/dev,conda-forge
- name: Install Conda Deps
shell: bash -l {0}
run: |
conda install readdy
- name: Install Dependencies
shell: bash -l {0}
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build Package
shell: bash -l {0}
run: |
python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: abq
password: ${{ secrets.PYPI_TOKEN }}