Release Java SDK v16.6.6 #868
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: Test-CLI | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-cli: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
########## KSM Python SDK (from source) | |
- name: Install SDK dependencies | |
working-directory: ./sdk/python/core | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install setuptools | |
python3 -m pip install -r requirements.txt | |
python3 -m pip install -e . | |
- name: Install SDK for integrations | |
working-directory: ./sdk/python/core | |
run: | | |
python3 setup.py build install | |
########## KSM Python Helper (from source) | |
- name: Install SDK Helper dependencies | |
working-directory: ./sdk/python/helper | |
run: | | |
python3 -m pip install --upgrade pip | |
python3 -m pip install -r requirements.txt | |
python3 -m pip install -e . | |
- name: Install SDK Helper for integrations | |
working-directory: ./sdk/python/helper | |
run: | | |
python3 setup.py build install | |
########## CLI | |
- name: Install CLI dependencies | |
working-directory: ./integration/keeper_secrets_manager_cli | |
run: | | |
python3 -m pip install -r requirements.txt | |
python3 -m pip install pytest pytest-cov | |
- name: Run CLI tests | |
working-directory: ./integration/keeper_secrets_manager_cli | |
run: | | |
PYTHONPATH=$PWD pytest |