Skip to content

Bump actions/setup-python from 6.0.0 to 6.2.0 #616

Bump actions/setup-python from 6.0.0 to 6.2.0

Bump actions/setup-python from 6.0.0 to 6.2.0 #616

Workflow file for this run

name: Pylint
on: [push, pull_request]
# Declare default permissions as read only.
permissions: read-all
jobs:
pylint:
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v5
with:
python-version: '3.12'
architecture: 'x64'
- name: Install Pylint
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Set up problem matcher for Pylint output
run: echo '::add-matcher::.github/problem-matchers/pylint.json'
- name: Pylint check
run: dev_tools/pylint