Skip to content

Bump github/codeql-action from 3.29.7 to 3.29.11 #572

Bump github/codeql-action from 3.29.7 to 3.29.11

Bump github/codeql-action from 3.29.7 to 3.29.11 #572

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@a26af69be951a213d495a4c3e4e4022e16d87065 # 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