Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Fix masked array are not supported in linalg.solve #4

Fix masked array are not supported in linalg.solve

Fix masked array are not supported in linalg.solve #4

Workflow file for this run

name: Run CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make install
- name: Run tests
run: |
make test