Skip to content

Bump cryptography from 41.0.7 to 42.0.2 #68

Bump cryptography from 41.0.7 to 42.0.2

Bump cryptography from 41.0.7 to 42.0.2 #68

Workflow file for this run

name: Integration
on:
push:
branches:
- master
pull_request:
jobs:
linting-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install --no-root
- name: Linting
run: |
poetry run flake8 . && poetry run isort --check-only --diff .
- name: Tests
run: |
poetry run python -m pytest -v