Skip to content

Bump cryptography from 41.0.7 to 42.0.5 #153

Bump cryptography from 41.0.7 to 42.0.5

Bump cryptography from 41.0.7 to 42.0.5 #153

Workflow file for this run

---
# This workflow will install Python dependencies and run tests with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python tests
on:
push:
# Run against all branches
# branches: [ "main" ]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
# Inspired by https://github.com/actions/setup-python/blob/main/docs/advanced-usage.md#caching-packages
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "poetry"
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest