-
Notifications
You must be signed in to change notification settings - Fork 36
39 lines (34 loc) · 1.14 KB
/
ubuntu-python.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
name: Ubuntu-python
on: [push]
jobs:
build-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04]
python-version: [ '3.8', '3.9' ]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: install-build-dependencies
run: sudo apt-get install libeigen3-dev
- name: submodule
run: git submodule update --init --recursive
- name: pip-install-pymathtoolbox
run: pip install ./
- name: install-test-dependencies
run: |
pip install matplotlib pillow seaborn scipy
sudo apt-get install fonts-linuxlibertine
- name: test
run: |
python ./python-examples/bayesian-optimization.py
python ./python-examples/classical-mds.py
python ./python-examples/classical-mds-image.py
python ./python-examples/rbf-interpolation-comparison.py
python ./python-examples/rbf-interpolation-exact.py
python ./python-examples/rbf-interpolation.py
python ./python-examples/som-image.py
python ./python-examples/som-image-1d.py