Release 0.5.1 #45
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: "LINT: Run flake8 & mypy" | |
on: [push, pull_request] | |
jobs: | |
flake8-and-mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade poetry | |
poetry install | |
- name: Lint with flake8 | |
run: | | |
poetry run flake8 pydantic_changedetect tests | |
poetry run mypy pydantic_changedetect |