Skip to content

feat: Calculate and filter priority disturbances, currently threshold… #27

feat: Calculate and filter priority disturbances, currently threshold…

feat: Calculate and filter priority disturbances, currently threshold… #27

Workflow file for this run

name: ruff
on: push
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: ruff linter
run: ruff check --output-format=github .
- name: ruff format check
run: ruff format --check .