Skip to content

chore(deps): update actions/setup-python action to v7 #1136

chore(deps): update actions/setup-python action to v7

chore(deps): update actions/setup-python action to v7 #1136

Workflow file for this run

# Copyright © Michal Čihař <michal@weblate.org>
#
# SPDX-License-Identifier: CC0-1.0
name: pylint check
on:
push:
branches-ignore:
- renovate/**
- dependabot/**
pull_request:
permissions:
contents: read
jobs:
pylint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
id: setup_python
with:
python-version: '3.14'
- uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
with:
save-cache: ${{ github.ref == 'refs/heads/master' }}
cache-suffix: ${{ steps.setup_python.outputs.python-version }}
version: 0.11.29
- name: Install deps
run: uv sync --all-extras --group pylint
- name: Run pylint
run: uv run --no-sync pylint --output-format=github wlc/ tests/