forked from singnet/rocca
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (45 loc) · 1.67 KB
/
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
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
container:
image: synthillect/opencog-minerl
options: --user root
steps:
- uses: actions/checkout@v2
# - uses: actions/setup-python@v2
# with:
# python-version: "3.9"
# architecture: "x64"
- name: Install the library
run: |
python3 -m pip install --upgrade pip wheel setuptools
pip install -r requirements-dev.txt
pip install -e .
- name: Read all notebooks
run: |
nbdev_read_nbs
- name: Check if all notebooks are cleaned
run: |
echo "Check we are starting with clean git checkout"
if [ -n "$(git status -uno -s)" ]; then echo "git status is not clean"; false; fi
echo "Trying to strip out notebooks"
nbdev_clean_nbs
echo "Check that strip out was unnecessary"
git status -s # display the status to see which nbs need cleaning up
if [ -n "$(git status -uno -s)" ]; then echo -e "!!! Detected unstripped out notebooks\n!!!Remember to run nbdev_install_git_hooks"; false; fi
- name: Check if the code is formatted
run: |
black --check .
- name: Check if there is no diff library/notebooks
run: |
echo "Building the library and formatting with black"
nbdev_build_lib
black .
if [ -n "$(git status -uno -s)" ]; then echo -e "!!! Detected difference between the notebooks and the library"; false; fi
- name: Run tests
run: |
pytest
# Unfortunately running MineRL doesn't work yet so we can't test notebooks.
# nbdev_test_nbs