-
Notifications
You must be signed in to change notification settings - Fork 9
218 lines (182 loc) · 5.8 KB
/
tests.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# GitHub Actions workflow for starclass's continuous integration.
name: Tests
on:
push:
branches: [master, devel]
tags: 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
pull_request:
branches: [master, devel]
schedule:
- cron: '0 6 1 * *' # once a month in the morning
# Change default shell to bash for all OS:
defaults:
run:
shell: bash
jobs:
# Use the `flake8` tool to check for syntax errors
flake8:
name: Flake8
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
lfs: false
- name: Setup Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
grep "^numpy" requirements.txt | xargs -I {} pip install "{}"
pip install -r requirements.txt
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
# For some reason we have to specifically ignore G001 as well
flake8 --select=E9,F63,F7,F82 --ignore=G001 --show-source
# exit-zero treats all errors as warnings.
flake8 --exit-zero
# Run unit tests on Linux, OSX and Windows
pytest:
needs: flake8
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.7', '3.8', '3.9', '3.10']
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 0
- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
- name: Git LFS Pull
run: git lfs pull
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install MacOS specific requirements
if: runner.os == 'macOS'
run: brew install libomp
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
grep "^numpy" requirements.txt | xargs -I {} pip install "{}"
pip install -r requirements.txt
pip install codecov pytest-cov
- name: Setup MPI
if: runner.os == 'Linux'
run: |
sudo apt-get update -y
sudo apt-get install -y openmpi-bin libopenmpi-dev
pip install mpi4py
- name: Download cache
run: coverage run run_download_cache.py -q
- name: Testing
run: pytest --cov --cov-append
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
env_vars: OS,PYTHON
# Use sphinx to build the documentation
docs:
name: Build documentation
needs: flake8
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
lfs: false
- name: Setup Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
grep "^numpy" requirements.txt | xargs -I {} pip install "{}"
grep -v -E "^mpi4py|^tensorflow|^xgboost" requirements.txt > requirements.tmp.txt
pip install -r requirements.tmp.txt
pip install -r docs/requirements-docs.txt
- name: Build Sphinx documentation
run: |
sphinx-build -a -W --no-color -b html -d docs/_build/doctrees docs docs/_build/html
#- name: Sphinx coverage
# run: |
# sphinx-build -a -W --no-color -b coverage -d docs/_build/doctrees docs docs/_build/coverage
# Release tagged commits to GitHub releases:
release:
name: Create release
if: startsWith( github.ref, 'refs/tags/v' )
needs: [pytest, docs]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
lfs: false
fetch-depth: 0
- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
- name: Git LFS Pull
run: git lfs pull
- name: Setup Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
grep "^numpy" requirements.txt | xargs -I {} pip install "{}"
pip install -r requirements.txt
- name: Update VERSION file
run: python -c "from starclass import version; version.update_release_version();"
- name: Set env
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/v}
- name: Generate changelog
id: changelog
uses: metcalfc/[email protected]
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Version ${{ steps.vars.outputs.tag }}
body: |
Version ${{ steps.vars.outputs.tag }}
Changelog
---------
${{ steps.changelog.outputs.changelog }}
draft: true