Skip to content

Bump cryptography from 45.0.6 to 45.0.7 in the all-dependencies group #99

Bump cryptography from 45.0.6 to 45.0.7 in the all-dependencies group

Bump cryptography from 45.0.6 to 45.0.7 in the all-dependencies group #99

Workflow file for this run

on: pull_request
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Run linting and formatting checks
run: make lint
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: make install
- name: Run unit tests
run: make test