Skip to content

Implementation of the StandardAbsoluteDeviation (SAD) anomaly detection algorithm #2120

Implementation of the StandardAbsoluteDeviation (SAD) anomaly detection algorithm

Implementation of the StandardAbsoluteDeviation (SAD) anomaly detection algorithm #2120

Workflow file for this run

name: code-quality
on:
pull_request:
branches:
- "*"
push:
branches:
- main
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- run: curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=nightly --profile=minimal -y && rustup show
if: matrix.os == 'ubuntu-latest'
- name: Cache Python dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
pip install -e ".[dev]"
- name: Run pre-commit on all files
run: pre-commit run --all-files