Skip to content

Add linter to master #1

Add linter to master

Add linter to master #1

Workflow file for this run

name: Lint
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run linter
run: flake8 .