Skip to content

Move the plotting function for prior mean bo to utils #8

Move the plotting function for prior mean bo to utils

Move the plotting function for prior mean bo to utils #8

Workflow file for this run

name: format
on: [push, pull_request]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install isort and black
run: pip install isort black
- name: Run black
run: black . --check --verbose --diff --color --exclude="/*.ipynb/"
- name: Run isort
run: isort . --check --diff --profile black