From a662a92947558b78365de59af9af0358dcb6d041 Mon Sep 17 00:00:00 2001 From: patrzhan <139926810+patrzhan@users.noreply.github.com> Date: Tue, 16 Jan 2024 10:26:30 -0800 Subject: [PATCH] chore: add cli and dependencies installation to CI steps (#280) Co-authored-by: Michael Dombrowski --- .github/workflows/CI.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ae47ba5e..50137b68 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -38,10 +38,14 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - name: Python version + - name: Install CLI and dependencies run: | python -VV python -m pip install --upgrade pip + # Perform clean install without test dependencies to ensure none of test dependencies + # have been used in the gdk codebase. + pip install . + gdk --help - name: Lint with flake8 run: | pip install flake8