Skip to content

ci: enable workflow_dispatch #44

ci: enable workflow_dispatch

ci: enable workflow_dispatch #44

Workflow file for this run

name: Linting check
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Setup poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.3.2
- name: Install dependencies
run: poetry install -E crypto
- name: Lint with flake8
run: poetry run flake8