Skip to content

Fix suboptimal usage of the logging module #154

Fix suboptimal usage of the logging module

Fix suboptimal usage of the logging module #154

Workflow file for this run

name: Falke8
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Python dependencies
run: pip install flake8
- name: Run linters
uses: samuelmeuli/lint-action@v1
with:
github_token: ${{ secrets.github_token }}
# Enable linters
flake8: true
# Mark the following line true if you want linters to attempt to autocorrect your code
auto_fix: false
git_name: "Greene Lab Linter"
git_email: "[email protected]"