[FIX] Return error code of failed subprocess instead of success (which is the default) #627
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: 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 |