Skip to content

Add regression tests for risk analysis #3

Add regression tests for risk analysis

Add regression tests for risk analysis #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
rust:
name: fmt, clippy, test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install stable Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo
uses: Swatinem/rust-cache@v2
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --all-features