Skip to content

build(deps-dev): bump pylint from 2.17.4 to 2.17.5 #198

build(deps-dev): bump pylint from 2.17.4 to 2.17.5

build(deps-dev): bump pylint from 2.17.4 to 2.17.5 #198

Workflow file for this run

# This file is part of the Consumer API Example.
#
# Copyright (C) 2023 Serghei Iakovlev <[email protected]>
#
# For the full copyright and license information, please view
# the LICENSE file that was distributed with this source code.
name: Lint Code
on:
push:
branches-ignore:
# These should always correspond to pull requests, so ignore them for
# the push trigger and let them be triggered by the pull_request
# trigger, avoiding running the workflow twice. This is a minor
# optimization so there's no need to ensure this is comprehensive.
- 'dependabot/**'
pull_request:
branches:
- main
jobs:
lint-code:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup cache on Linux
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Set up virtualenv
run: make init
- name: Install dependencies
run: make install
- name: Setup pylint cache
uses: actions/cache@v3
with:
path: ~/.cache/pylint
key: ${{ runner.os }}-pip-${{ hashFiles('**/*.py') }}
restore-keys: |
${{ runner.os }}-pylint-
- name: Python code linting
run: make lint