Skip to content

add outlier display and filtering it #2

add outlier display and filtering it

add outlier display and filtering it #2

Workflow file for this run

name: CI
on: [push]
jobs:
check:
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v2
- name: Check formatting
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy -- -D warnings -W clippy::pedantic
build:
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose