Skip to content

Merge pull request #17 from alessiagp/kabsch-bug #79

Merge pull request #17 from alessiagp/kabsch-bug

Merge pull request #17 from alessiagp/kabsch-bug #79

Workflow file for this run

name: test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: build excogito
run: |
mkdir build
cd build
cmake ..
make
cd -
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip pathlib numpy
- name: test
run: |
cd tests
python test_suite.py
cd -