Refactored static and dynamic enrichment APIs #3306
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: CI | |
on: | |
push: # only run on push to main | |
branches: [main] | |
pull_request: # open between any two branches | |
jobs: | |
typecheck: | |
name: Type check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- run: | | |
python -m pip install --upgrade pip | |
pip install . # install deps | |
pip install mypy | |
mypy --install-types --non-interactive cleanlab_studio | |
- run: mypy --strict cleanlab_studio |