Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Notice of PipelineWise being shrank #54

Notice of PipelineWise being shrank

Notice of PipelineWise being shrank #54

Workflow file for this run

name: Linter
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- name: Checking out repo
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.container[1] }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U pip setuptools wheel
pip install -Ue .[test]
- name: Pylinting
run: pylint tap_github --disable 'logging-fstring-interpolation,broad-except,chained-comparison,empty-docstring,fixme,invalid-name,line-too-long,missing-class-docstring,missing-function-docstring,missing-module-docstring,no-else-raise,no-else-return,too-few-public-methods,too-many-arguments,too-many-branches,too-many-lines,too-many-locals,ungrouped-imports,wrong-spelling-in-comment,wrong-spelling-in-docstring,bad-whitespace,global-statement'