Skip to content

feat: A commit of the type feat introduces a new feature to the codeb… #4

feat: A commit of the type feat introduces a new feature to the codeb…

feat: A commit of the type feat introduces a new feature to the codeb… #4

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8 .