fix and activate pycodestyle E225 in dev/ #30
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: { branches: [ "master" ] } | |
pull_request: { branches: [ "master" ] } | |
jobs: | |
codespell: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
sudo apt-get install -y codespell | |
sudo apt-get install -y pycodestyle | |
- name: Run codespell | |
shell: bash -l {0} | |
run: codespell -L pres,ans spherogram_src | |
- name: Run pycodestyle | |
shell: bash -l {0} | |
# We currently only check for some warnings. We should enable & fix more of them. | |
run: pycodestyle --select=E111,E225,E302,E306,E401,E701,E702,E703,E704,W391,W605,E711,E713,E721 spherogram_src/ | |
env: | |
MAKEFLAGS: -j2 |