Bump docker/build-push-action from 4 to 5 #539
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"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Pre Commit Checks | |
uses: pre-commit/action@v3.0.0 | |
- name: Setup Temp Directory | |
run: mkdir broker_dir | |
- name: Unit Tests | |
env: | |
BROKER_DIRECTORY: "${{ github.workspace }}/broker_dir" | |
run: | | |
pip install -U pip | |
pip install -U .[dev,docker] | |
ls -l "$BROKER_DIRECTORY" | |
broker --version | |
pytest -v tests/ --ignore tests/functional |