feat: preserve type for ChainContext
constructed by a subclass inst…
#122
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: Python Code Formatting Checks | |
on: ["push", "pull_request"] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
working-directory: python | |
run: | | |
python -m pip install -U pip poetry | |
poetry install --all-extras --with dev | |
- name: Run isort check | |
working-directory: python | |
run: | | |
poetry run isort . --check --diff | |
- name: Run black check | |
working-directory: python | |
run: | | |
poetry run black . --check --diff |