-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·54 lines (44 loc) · 1.26 KB
/
ci.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
name: CI
on:
push:
branches: [ main, develop, vb/deepforest ]
pull_request:
branches: [ main, develop ]
jobs:
ci:
strategy:
matrix:
os: [ubuntu-latest]
python: ["3.9"]
fail-fast: false
runs-on: ${{ matrix.os }}
defaults:
run:
# Required when using an activated conda environment in steps
# See https://github.com/conda-incubator/setup-miniconda#IMPORTANT
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
- name: Upgrade setuptools
run: |
pip3 install wheel --upgrade
pip3 install setuptools --upgrade
- name: Set up conda
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: false
activate-environment: deepmap
environment-file: environment.yml
- name: Conda Info
run: |
conda info
conda list
- name: Cache large files
run: |
python -c "from deepmap.data.ondemand import get_all; get_all()"
- name: Run all notebooks
run: |
jupyter nbconvert --to script *.ipynb --output-dir .
for f in *.py; do python "$f"; done
working-directory: ./notebooks