Skip to content

Introduction of broker config cli and much more! #777

Introduction of broker config cli and much more!

Introduction of broker config cli and much more! #777

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- "*.md"
- "*.example"
- ".gitignore"
- "tests/functional/*"
- "tests/data/*"
jobs:
analyze:
name: CodeQL Analysis
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Pre Commit Checks
uses: pre-commit/action@v3.0.1
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Setup Temp Directory
run: mkdir broker_dir
- name: Unit Tests
env:
UV_SYSTEM_PYTHON: 1
run: |
uv pip install "broker[dev,podman] @ ."
broker --version
pytest -v tests/ --ignore tests/functional