End to end ml-flow deployments #2791
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://black.readthedocs.io/en/stable/integrations/github_actions.html | |
name: Python formatter | |
on: | |
- push | |
- pull_request | |
jobs: | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: black --check | |
uses: psf/black@stable | |
with: | |
options: "--check --diff --verbose" | |
src: "./" | |
version: "~= 22.0" |