Skip to content

Add basic LAGraph expression evaluation #9

Add basic LAGraph expression evaluation

Add basic LAGraph expression evaluation #9

Workflow file for this run

name: Build & Test
on:
push:
branches:
- main
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recurse
- uses: crate-ci/typos@master
- run: rustup update stable && rustup default stable
- run: cargo fmt --check
- run: cargo clippy
- run: |
git clone https://github.com/DrTimothyAldenDavis/GraphBLAS.git
cd GraphBLAS
git checkout tags/v${{ matrix.config.grb_version }}
make compact
sudo make install
cd ..
- run: |
cd vendor/LAGraph
git checkout rpq-matrix
make
sudo make install
cd ../..
- run: cargo build --verbose
- run: cargo test --verbose