Skip to content

Commit

Permalink
chore: add cli and dependencies installation to CI steps (#280)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Dombrowski <mdombro@amazon.com>
  • Loading branch information
patrzhan and MikeDombo authored Jan 16, 2024
1 parent 439da5d commit a662a92
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a662a92

Please sign in to comment.