Fix vertex constraints handling error #22
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: recursive | |
| - uses: crate-ci/typos@master | |
| - run: rustup update stable && rustup default stable | |
| - run: cargo fmt --check | |
| - run: cargo clippy | |
| - run: | | |
| git clone --depth 1 https://github.com/DrTimothyAldenDavis/GraphBLAS.git | |
| cd GraphBLAS | |
| make compact | |
| sudo make install | |
| cd .. | |
| - run: | | |
| cd vendor/LAGraph | |
| make | |
| sudo make install | |
| cd ../.. | |
| - run: cargo build --verbose | |
| - run: cargo test --verbose |