Skip to content

Ci finalize

Ci finalize #54

Workflow file for this run

name: Python Bindings
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:

Check failure on line 16 in .github/workflows/python.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
submodules: 'recursive'
- name: dependencies
run: sudo apt install -y libboost-all-dev python3-pybind11 pybind11-dev
- name: pip install
run: pip install .
- name: test import
run: cd tests/python && ./test_import.py
- name: test raw genome
run: cd tests/python && ./test_raw_genome.py
- name: test xor
run: cd tests/python && ./test_xor.py
- name: configure tests
run: cmake -B build -DGENERATE_PYTHON_BINDINGS=ON -DENABLE_TESTING=ON
- name: build tests
run: cmake --build build
- name: run cmake tests
run: cmake --build build --target test