Skip to content

remove: old workflow #24

remove: old workflow

remove: old workflow #24

Workflow file for this run

name: Lint Python
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
pip install isort
pip install flake8
- name: Analysing the code with black
run: black --check keyt
- name: Order import with isort
run: isort keyt
- name: Lint with flake8
run: flake8 keyt