Skip to content

chore(deps): bump cryptography from 41.0.3 to 41.0.4 #217

chore(deps): bump cryptography from 41.0.3 to 41.0.4

chore(deps): bump cryptography from 41.0.3 to 41.0.4 #217

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup pip
run: |
python -m pip install --upgrade pip pip-tools
pip-sync requirements.txt
pip install .
- name: Lint with ruff
run: make lint-ruff
- name: Lint with black
run: make lint-black
- name: Lint with mypy
run: make lint-mypy
- name: Test with pytest
run: make test