Skip to content

Bump h3 from 1.15.8 to 1.15.9 in /website #1373

Bump h3 from 1.15.8 to 1.15.9 in /website

Bump h3 from 1.15.8 to 1.15.9 in /website #1373

Workflow file for this run

name: pylint
permissions:
contents: read
pull-requests: write
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- '**/*.py'
- '.pylintrc'
merge_group: # Needed for required workflows
# Run after a review has been submitted (this is a required workflow which
# might not be triggered when no code changes -- trigger before going to
# merge queue).
pull_request_review:
types: [submitted]
jobs:
copyright_header:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- name: Check licence headers
run: ./tools/check_copyright.sh
pylint:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install --require-hashes --no-deps -r requirements.txt
pip install --upgrade pylint
- name: Register matcher
run: echo ::add-matcher::./.github/python_matcher.json
- name: Test code with pylint
run: ./tools/run_pylint.sh