Skip to content

[168] Adding some changes that make it possible to get more insight i… #92

[168] Adding some changes that make it possible to get more insight i…

[168] Adding some changes that make it possible to get more insight i… #92

Workflow file for this run

name: Lint
on: push
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 black==22.6.0 flake8==5.0.4
- name: Run linters
uses: samuelmeuli/lint-action@v1.5.3
with:
github_token: ${{ secrets.github_token }}
# Enable linters
black: true
flake8: true