name: tamq-ci on: push: pull_request: jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.11" - run: sudo apt-get update - run: sudo apt-get install -y tmux - run: python -m pip install uv - run: python -m pip install -e '.[dev]' - run: make check - run: python -m tamq.cli --help - run: python -m tamq.cli --version - run: python -m tamq.cli capture --help