Skip to content

Enable support for Vault secrets in Manifester #131

Enable support for Vault secrets in Manifester

Enable support for Vault secrets in Manifester #131

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- "*.md"
- "*.example"
- ".gitignore"
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
with:
ref: ${{ github.ref }}
- 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: Unit Tests
run: |
pip install -U pip
pip install -U .[test]
cp manifester_settings.yaml.example manifester_settings.yaml
pytest -v tests/