Validate Pydantic imports #574
Workflow file for this run
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 | |
on: | |
- pull_request | |
jobs: | |
lint_ts: | |
name: Lint TypeScript source | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
with: | |
python_version: "3.11.x" | |
- name: Install JupyterLab | |
run: pip install jupyterlab~=4.0 | |
- name: Install JS dependencies | |
run: jlpm | |
- name: Lint TypeScript source | |
run: jlpm lerna run lint:check | |
lint_py_imports: | |
name: Lint Python imports | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Echo environment details | |
run: | | |
which python | |
which pip | |
python --version | |
pip --version | |
- name: Create and activate venv | |
run: | | |
python -m venv lint_py_imports | |
source ./lint_py_imports/bin/activate | |
- name: Echo environment details | |
run: | | |
which python | |
which pip | |
python --version | |
pip --version | |
- name: Install JupyterLab | |
run: pip install jupyterlab~=4.0 | |
- name: Install `import-linter` | |
run: pip install import-linter~=1.12.1 | |
- name: Test | |
run: | | |
pip show attr | |
- name: Install Jupyter AI packages from source | |
run: | | |
jlpm install | |
jlpm install-from-src | |
- name: Lint Python imports | |
run: lint-imports |