Minor updates to user-facing log messages. #712
This file contains 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: "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/[email protected] | |
- name: Setup Temp Directory | |
run: mkdir broker_dir | |
- name: Unit Tests | |
env: | |
BROKER_DIRECTORY: "${{ github.workspace }}/broker_dir" | |
run: | | |
cp broker_settings.yaml.example ${BROKER_DIRECTORY}/broker_settings.yaml | |
pip install uv | |
uv pip install --system "broker[dev,docker] @ ." | |
ls -l "$BROKER_DIRECTORY" | |
broker --version | |
pytest -v tests/ --ignore tests/functional |