-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (34 loc) · 950 Bytes
/
ci.yaml
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
name: Continuous Integration
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
ci:
runs-on: ${{ matrix.os }}
if: github.repository == 'ml4ai/dass-wills'
strategy:
matrix:
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v2
- name: Continuous Integration
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends apt-utils\
git curl gcc build-essential \
pkg-config openjdk-8-jdk antlr4 \
python3 python3-dev python3-pip python3-venv \
graphviz libgraphviz-dev doxygen
python3 -m venv dass_wills_venv
source dass_wills_venv/bin/activate
pip install --upgrade setuptools
pip install wheel
pip install -r requirements.txt
cd docs
mkdir -p build
make apidocs
make html