Skip to content

build(deps): bump cryptography from 39.0.1 to 41.0.3 #73

build(deps): bump cryptography from 39.0.1 to 41.0.3

build(deps): bump cryptography from 39.0.1 to 41.0.3 #73

Workflow file for this run

name: CI
on: ['push', 'pull_request']
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Lint
run: |
make lint
- name: Test
run: |
make test