Skip to content

updated pyo3, numpy. added build script workarounds to run examples #23

updated pyo3, numpy. added build script workarounds to run examples

updated pyo3, numpy. added build script workarounds to run examples #23

Workflow file for this run

on: [push, pull_request]
name: Run Tests
jobs:
testing:
name: tests
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
strategy:
# fail-fast: false
matrix:
rust:
- stable
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Install openblas
run: sudo apt-get install libopenblas-dev gfortran
- name: Cargo test
run: cargo test --verbose
- name: Cargo test --features blas
run: cargo test --features blas --verbose