Skip to content

feat(log-analysis): add timestamped parameter history #5988

feat(log-analysis): add timestamped parameter history

feat(log-analysis): add timestamped parameter history #5988

Workflow file for this run

name: Pylint
on:
pull_request:
paths:
- '**/*.py' # Watch for changes in any Python files
- 'pyproject.toml' # Watch for changes in the pyproject.toml file
push:
paths:
- '**/*.py' # Watch for changes in any Python files
- 'pyproject.toml' # Watch for changes in the pyproject.toml file
workflow_dispatch:
concurrency:
group: ci-${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
pylint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.14"]
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
# https://docs.astral.sh/uv/guides/integration/github/
- name: Install uv and set the python version
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
with:
python-version: ${{ matrix.python-version }}
activate-environment: true
- name: Install dependencies
# these extra packages are required by pylint to validate the python imports
run: |
uv pip install .[dev,scripts,pypi_dist]
- name: Install ty dependency
run: |
uv pip install ty
- name: Analyze the code with ty
run: |
ty check
- name: Analyze the code with pylint
run: |
pylint $(git ls-files '**/*.py')