libmf 0.4.0

Large-scale sparse matrix factorization for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: build
on: [push, pull_request]
jobs:
  build:
    strategy:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, macos-latest, windows-latest]
    runs-on: ${{ matrix.os }}
    steps:
      - uses: actions/checkout@v6
        with:
          submodules: true
      # build for no_std to catch errors
      - run: cargo build
      - run: cargo test