Adding pydantic models for kafka event. #14
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: Pre-Commit Checks | |
on: | |
pull_request: | |
push: | |
branches: [main, dev] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- run: python -m pip install pre-commit | |
shell: bash | |
- run: python -m pip freeze --local | |
shell: bash | |
- run: pre-commit run --show-diff-on-failure --color=always | |
shell: bash |