-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (56 loc) · 1.56 KB
/
build.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
name: Build benchmark docs
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
#- name: Check out data repository
# uses: actions/checkout@v2
# with:
# repository: //<insert your repository here>
# token: ${{ secrets.GIT_TOKEN }}
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Cache Pip dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
python -m pytest tests
- name: Check data
id: check-data
run: |
RESULT=$(find data -type f)
echo "::set-output name=check-data::$RESULT"
echo "${RESULT}"
shell: bash
- name: Verify data
run: |
sample_output="data/CollectedData_Mackenzie.h5 data/CollectedData_Daniel.h5 data/CollectedData_Valentina.h5 data/CollectedData_Mostafizur.h5"
if [ "${{ steps.check-data.outputs.check-data }}" != "$sample_output" ]; then
echo "Data check failed"
exit 1
fi
- name: Run benchmark
run: |
python -m benchmark
- name: Build documentation
run: |
make deploy