Allow broker_settings example copy from local repo #673
Workflow file for this run
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: | | |
pip install uv | |
uv pip install --system "broker[dev,docker] @ ." | |
ls -l "$BROKER_DIRECTORY" | |
broker --version | |
pytest -v tests/ --ignore tests/functional |