diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index b4f76a8..b2f99bb 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -1,9 +1,9 @@ -name: Pylint +name: Run checks on: [push] jobs: - build: + pylint: runs-on: ubuntu-latest strategy: matrix: @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pylint + pip install pylint pyroute2 dateutil - name: Analysing the code with pylint run: | pylint $(git ls-files '*.py') --fail-under 7 --fail-on E