[BV-599] Kubeconfig helper #288
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: Tests | Unit | |
on: [push, pull_request] | |
jobs: | |
unit_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
run: | | |
echo "[INFO] Installing Poetry..." | |
curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.8.2 python - | |
echo "[INFO] Configuring Poetry..." | |
poetry config virtualenvs.create false # This prevents poetry from creating a virtual environment | |
- name: Install dependencies using Poetry | |
run: | | |
echo "[INFO] Installing dependencies..." | |
export ENV POETRY_VIRTUALENVS_CREATE=false | |
export PATH="${PATH}:${HOME}/.poetry/bin" | |
poetry install --with=dev | |
- name: Run unit tests | |
run: | | |
echo "[INFO] Running unit tests and generate coverage report" | |
export PATH="${PATH}:${HOME}/.poetry/bin" | |
poetry run pytest --verbose --cov=./leverage/ --cov-report=xml | |
shell: bash | |
- name: Report Coveralls | |
if: matrix.python-version == '3.9' # Run this for the first python version only! | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |