Skip to content

Bump cryptography from 37.0.4 to 41.0.3 #200

Bump cryptography from 37.0.4 to 41.0.3

Bump cryptography from 37.0.4 to 41.0.3 #200

Workflow file for this run

name: Unit tests
on:
pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- uses: dschep/install-pipenv-action@v1
- name: Install dependencies
run: |
pipenv install --dev
- name: Test with pytest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pipenv run python -m coverage run -m pytest
pipenv run python -m coverage report
pipenv run python -m coverage html