Prepare for python 3.10 #25
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
# This workflow will install and then lint the code with Flake8 and Pylint. | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
name: Coding style | ||
on: | ||
push: | ||
branches: ['master', 'devel'] | ||
pull_request: | ||
branches: '*' | ||
permissions: | ||
contents: read | ||
.prepare-conda: &prepare-conda | ||
Check failure on line 15 in .github/workflows/coding-style.yml
|
||
- source $CONDA/etc/profile.d/conda.sh | ||
- conda activate | ||
jobs: | ||
Flake8: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
# Add multiple Python versions here to run tests on new(er) versions. | ||
python-version: ["3.8", "3.11"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install flake8 | ||
- name: Lint with flake8 | ||
run: | | ||
# stop the build if there are Python syntax errors or undefined names | ||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# The GitHub editor is 127 chars wide | ||
flake8 . --count --statistics | ||
Pylint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
# Add multiple Python versions here to run tests on new(er) versions. | ||
python-version: ["3.8", "3.11"] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
*prepare-conda | ||
conda install -y -c conda-forge mayavi traits traitsui pyface pyfmi h5py mpi4py pytest-cov psutil pytables pyyaml matplotlib mamba pandas openpyxl jupyter jupyter-book flake8 pylint | ||
#python -m pip install --upgrade pip | ||
#pip install pylint | ||
# Install the package itself to make sure that all imports work. | ||
pip install . | ||
- name: Analysing the code with pylint | ||
run: | | ||
*prepare-conda | ||
pylint $(git ls-files '*.py') --fail-under=7.0 |