Closing issue #1 (“Show QObserva meta, agent, and collector versions on Run details”) #9
Workflow file for this run
This file contains hidden or 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: 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 |