Skip to content

Bump cryptography from 39.0.1 to 41.0.0 #15

Bump cryptography from 39.0.1 to 41.0.0

Bump cryptography from 39.0.1 to 41.0.0 #15

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flit
flit install
- name: Test with pytest
run: |
pytest . -W ignore::DeprecationWarning