Skip to content

some fixes by ruff about comprehensions, etc #42

some fixes by ruff about comprehensions, etc

some fixes by ruff about comprehensions, etc #42

Workflow file for this run

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
sudo pip install cython-lint
- 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,E221,E222,E225,E227,E228,E302,E305,E306,E401,E701,E702,E703,E704,W391,W605,E711,E713,E721 spherogram_src/
run: pycodestyle --select=E111,E221,E222,E225,E227,E228,E305,E306,E401,E701,E702,E703,E704,W391,W605,E711,E713,E721 dev/

Check failure on line 24 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / Lint

Invalid workflow file

The workflow is not valid. .github/workflows/lint.yml (Line: 24, Col: 9): 'run' is already defined
- name: Run cython-lint
shell: bash -l {0}
run: cython-lint .
env:
MAKEFLAGS: -j2