Skip to content

ci: add Argus QA trigger + PyPI publish workflow #2

ci: add Argus QA trigger + PyPI publish workflow

ci: add Argus QA trigger + PyPI publish workflow #2

Workflow file for this run

name: CLI Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install CLI
run: pip install -e .
- name: Verify CLI entry point
run: cueapi --help
- name: Verify CLI version
run: cueapi --version