Skip to content

Fix SMD in experiments #257

Fix SMD in experiments

Fix SMD in experiments #257

Workflow file for this run

name: linter
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
lint:
name: Lint code base
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Lint with flake
run: |
pip install flake8
pip install flake8-docstrings
flake8 fedeca/ --max-line-length=88 --append-config .flake8