Skip to content

Bump cryptography from 41.0.3 to 41.0.4 #159

Bump cryptography from 41.0.3 to 41.0.4

Bump cryptography from 41.0.3 to 41.0.4 #159

Workflow file for this run

---
name: "Tests"
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v3"
- name: "Setup Python env"
uses: "actions/setup-python@v2"
with:
python-version: 3.9
- name: "Run tests"
run: |
pip install -U "pip ~= 23.0.0"
python -m venv ~/.env
source ~/.env/bin/activate
make bootstrap lint test
- name: "Upload coverage to Codecov"
uses: "codecov/codecov-action@v3"
with:
fail_ci_if_error: true
verbose: true
...