Show @lru_cache stats if PORTAGE_SHOW_LRU_CACHE_INFO env var is set #2143
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: [ push, pull_request ] | |
jobs: | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Collect stragglers that Black misses" | |
id: stragglers | |
run: | | |
echo "missed=$( | |
find bin -type f -not -name '*.py' -not -name '*.sh' | \ | |
xargs grep -l '#!/usr/bin/env python' | tr $'\n' ' ')" >> $GITHUB_OUTPUT | |
- uses: psf/[email protected] | |
with: | |
src: . ${{ steps.stragglers.outputs.missed }} | |
pylint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install python dependencies | |
run: | | |
set -xe | |
python -VV | |
python -m site | |
python -m pip install --upgrade pip | |
python -m pip install pylint pytest | |
- name: Run pylint for ${{ matrix.python-version }} | |
run: | | |
./run-pylint |