[...]
BayesianWorkflow.jl is not on the General registry yet. You can install it with:
] add https://github.com/penelopeysm/BayesianWorkflow.jlBayesianWorkflow.jl uses Runic.jl as its code formatter.
Every PR should be formatted with Runic.jl before merging. If you want, you can install Runic and manually format the code using the instructions on the Runic.jl repository.
However, it is probably easiest to use pre-commit for this.
First, install pre-commit using your package manager of choice.
Then, from the root of the repository, run
pre-commit installEvery time you make a commit, pre-commit will now automatically run Runic.jl on the code and format it for you.
To manually format code, you can run
pre-commit run --all-files