CI: added SageMath 9.8 and 9.10 #168
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 ans,arithmetics,inout,trough,compresser,rime,ba python | |
- 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,E21,E221,E222,E225,E227,E228,E241,E251,E262,E265,E271,E272,E30,E401,E701,E702,E703,E704,E711,E713,E714,E721,W2,W3,W6 python/ | |
pycodestyle --filename=*.pyx --select=W2 cython/ | |
env: | |
MAKEFLAGS: -j2 |