Skip to content

Adding the usual Linters #12

Adding the usual Linters

Adding the usual Linters #12

Workflow file for this run

name: Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: ${{ matrix.package }} ⏩ ${{ matrix.linter }}
strategy:
fail-fast: false
matrix:
linter: [ "pylint", "pycodestyle", "flake8", "mypy", "isort" ]
package: [ "jani_generator", "mc_toolchain_jani_common", "scxml_converter" ]
include:
# (for humble):
- python-version: "3.10"
os: "ubuntu-20.04"
runs-on: ${{ matrix.os }}
steps:
- uses: szenius/[email protected]
with:
timezoneLinux: "Europe/Berlin"
- uses: actions/checkout@v3
# Get bt_tools TODO: remove after the release of bt_tools
- name: Checkout bt_tools
uses: actions/checkout@v2
with:
repository: boschresearch/bt_tools
ref: main
path: bt_tools
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: |
pip install --upgrade pip
pip install setuptools_rust
# Install btlib TODO: remove after the release of bt_tools
- name: Install btlib
run: |
cd bt_tools
pip install -e btlib/.
- name: Install packages
run: |
pip install jani_generator/.[dev]
pip install mc_toolchain_jani_common/.[dev]
pip install scxml_converter/.[dev]
- uses: ricardochaves/[email protected]
with:
python-root-list: ${{ matrix.package }}/src/${{ matrix.package }}
use-pylint: ${{ matrix.linter == 'pylint' }}
use-pycodestyle: ${{ matrix.linter == 'pycodestyle' }}
use-flake8: ${{ matrix.linter == 'flake8' }}
use-black: false
use-mypy: ${{ matrix.linter == 'mypy' }}
use-isort: ${{ matrix.linter == 'isort' }}
extra-pylint-options: ""
extra-pycodestyle-options: ""
extra-flake8-options: ""
extra-black-options: ""
extra-mypy-options: "--ignore-missing-imports"
extra-isort-options: ""