linfa-linalg 0.2.1

Pure-Rust implementation of linear algebra routines for ndarray
Documentation
on: [push, pull_request]

name: Run Tests

jobs:
  testing:
    name: testing-${{ matrix.toolchain }}-${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    if: github.event.pull_request.draft == false
    strategy:
      fail-fast: false
      matrix:
        toolchain:
          - 1.65.0
          - stable
        os:
          - ubuntu-latest
          - windows-latest

    steps:
      - name: Checkout sources
        uses: actions/checkout@v2

      - name: Install toolchain
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: ${{ matrix.toolchain }}
          override: true

      - name: Log active toolchain
        run: rustup show

      - name: Run cargo test
        uses: actions-rs/cargo@v1
        with:
          command: test 
          args: --all-features --release