Skip to content

Bump cryptography from 41.0.2 to 41.0.4 #67

Bump cryptography from 41.0.2 to 41.0.4

Bump cryptography from 41.0.2 to 41.0.4 #67

Workflow file for this run

name: CI Linter
on: [push, pull_request]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9]
poetry-version: [1.3.1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Run linter
run: poetry run make lint