Skip to content

Bump cryptography from 36.0.1 to 42.0.4 #85

Bump cryptography from 36.0.1 to 42.0.4

Bump cryptography from 36.0.1 to 42.0.4 #85

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-18.04
name: Code linting
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Update pip and install deps
run: |
python -m pip install --upgrade pip
python -m pip install check-manifest flake8
- name: Check MANIFEST.in in a source package
run: check-manifest -v
- name: Static code analysis and code style check
run: flake8 ./