Skip to content

Merge pull request #44 from diverso-lab/develop #498

Merge pull request #44 from diverso-lab/develop

Merge pull request #44 from diverso-lab/develop #498

Workflow file for this run

name: Python Lint
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
lint:
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 Dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: |
flake8 app