Skip to content

Bump cryptography from 45.0.6 to 45.0.7 #38

Bump cryptography from 45.0.6 to 45.0.7

Bump cryptography from 45.0.6 to 45.0.7 #38

name: Check development dependencies
on:
pull_request:
branches: [main]
permissions:
contents: read
jobs:
check-development-dependencies:
name: Check development dependencies
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m venv ./venv
source ./venv/bin/activate
echo "PATH=${PATH}" >> "${GITHUB_ENV}"
python -m pip install --upgrade pip
python -m pip install --requirement development-requirements.txt