Skip to content

Bump cryptography from 41.0.3 to 42.0.4 #21

Bump cryptography from 41.0.3 to 42.0.4

Bump cryptography from 41.0.3 to 42.0.4 #21

Workflow file for this run

# This workflow will install Python dependencies and run tests for pymrtd
name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11.5
uses: actions/setup-python@v4
with:
python-version: 3.11.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
- name: Test with pytest
run: |
pytest tests