Merge pull request #268 from akashAD98/tutoral/multomodal-jina #368
This file contains 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
name: black-action | |
on: [push, pull_request] | |
jobs: | |
linter_name: | |
name: runner / black formatter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Black | |
run: pip install "black[jupyter]" | |
- uses: actions/checkout@v4 | |
- uses: rickstaa/action-black@v1 | |
with: | |
black_args: ". --check --verbose" |