Skip to content

Integration of basic C++ benchmarks #267

Integration of basic C++ benchmarks

Integration of basic C++ benchmarks #267

Workflow file for this run

name: CI Python Linux
on:
- push
- pull_request
jobs:
build:
name: "🐍 Ubuntu 20.04 - Python ${{ matrix.python-version }}"
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
sudo apt install libeigen3-dev
python -m pip install pytest
- name: Install
run: |
python -m pip install -v .
- name: Test
run: |
python -m pytest -vs