Skip to content

add rank-1 update of Cholesky decomposition #110

add rank-1 update of Cholesky decomposition

add rank-1 update of Cholesky decomposition #110

Workflow file for this run

on: [push, pull_request]
name: Codequality Lints
jobs:
codequality:
name: codequality
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- 1.65.0
- stable
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
components: rustfmt, clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings