Skip to content

Bump nanoid from 3.3.7 to 3.3.8 in /website in the npm_and_yarn group #943

Bump nanoid from 3.3.7 to 3.3.8 in /website in the npm_and_yarn group

Bump nanoid from 3.3.7 to 3.3.8 in /website in the npm_and_yarn group #943

Workflow file for this run

name: pylint
on:
push:
paths:
- '**/*.py'
- '.pylintrc'
pull_request:
types: [opened, synchronize, reopened]
merge_group:
jobs:
copyright_header:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Check licence headers
run: ./tools/check_copyright.sh
pylint:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
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