Skip to content

Prepare for python 3.10 #25

Prepare for python 3.10

Prepare for python 3.10 #25

Workflow file for this run

# 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

View workflow run for this annotation

GitHub Actions / Coding style

Invalid workflow file

The workflow is not valid. .github/workflows/coding-style.yml (Line: 15, Col: 1): Unexpected value '.prepare-conda' .github/workflows/coding-style.yml: Anchors are not currently supported. Remove the anchor 'prepare-conda'
- 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