Skip to content

docs: Update README with Docker usage instructions and dependency che… #136

docs: Update README with Docker usage instructions and dependency che…

docs: Update README with Docker usage instructions and dependency che… #136

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install .
- name: Compile C++ code
run: |
cd vbi/models/cpp/_src
make
- name: Run tests
run: |
python -m pytest