Skip to content

Bump cryptography from 42.0.2 to 42.0.4 #212

Bump cryptography from 42.0.2 to 42.0.4

Bump cryptography from 42.0.2 to 42.0.4 #212

Workflow file for this run

name: CI Runner
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Update system deps
run: sudo apt-get update
- name: Install system deps
run: sudo apt-get -y install libxmlsec1-dev pkg-config
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
python -m poetry install --extras "graphql" --extras "saml"
- name: Codestyle Checks
run: |
python -m poetry run flake8 .
python -m poetry run black . --check
python -m poetry run isort . --check
python -m poetry run vale README.md CONTRIBUTING.md
- name: Test with pytest
run: |
python -m poetry run pytest
- name: Dependency Check
run: |
python -m poetry run bandit -r fastapi_opa --exclude="fastapi_opa/example_oidc.py","fastapi_opa/example_saml.py"