Skip to content

[Temp] Dropped spell check logic from repo #27

[Temp] Dropped spell check logic from repo

[Temp] Dropped spell check logic from repo #27

Workflow file for this run

on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
workflow_dispatch: # manual trigger
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
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: |
pip install -r requirements-travis.txt
- name: Analysing the code with pylint
run: |
inspekt checkall --disable-lint W,R,C,E1002,E1101,E1103,E1120,F0401,I0011,E0203,E711,W605,E721 --no-license-check
inspekt indent
inspekt style