Skip to content

Closing issue #1 (“Show QObserva meta, agent, and collector versions on Run details”) #9

Closing issue #1 (“Show QObserva meta, agent, and collector versions on Run details”)

Closing issue #1 (“Show QObserva meta, agent, and collector versions on Run details”) #9

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
pypi-install-smoke:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install -U pip
pip install qobserva
- name: Smoke test CLI
run: |
python -c "import qobserva; print(qobserva.__version__)"
qobserva --help
qobserva up --help
qobserva down --help