Skip to content

[ADD] Method from_mat_inner to structured matrix interface #310

[ADD] Method from_mat_inner to structured matrix interface

[ADD] Method from_mat_inner to structured matrix interface #310

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
env:
USING_COVERAGE: '3.9'
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-python@v1
with:
python-version: "${{ matrix.python-version }}"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
make install-test
- name: Run test
run: |
make test-light