Skip to content

Release v4.2.0

Release v4.2.0 #637

Workflow file for this run

name: Run pylint tests - wahoomc & tests
on:
push:
branches:
- develop
pull_request:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
pylint-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "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 pylint==2.15.*
pip install mock
pip install requests==2.28.*
- name: Analysing the code with pylint
run: |
pylint -j 0 ./wahoomc ./tests
continue-on-error: false