I'm familiar with Github Actions workflows to automate code checks whenever a PR is raised to a specified branch. For example for Python code, very useful is if unit tests (e.g. pytest), syntax (flake8), and code formatting (black formatter), type hinting (mypy) are run whenever a PR is raised or a branched is merged.
I am working in Databricks and my git provider is Azure Devops. I see the "Workflows" asset in Databricks - but not sure how to configure it in a way that could accomodate the described checks. Note I know how to write the .yaml file for Github Actions. Just not sure how to do the equivalent in Databricks.
Thank you very much in advance!