Skip to content

Bump pylint from 3.3.3 to 3.3.4 #46

Bump pylint from 3.3.3 to 3.3.4

Bump pylint from 3.3.3 to 3.3.4 #46

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- 'stable/**'
pull_request:
branches:
- main
- 'stable/**'
jobs:
lint:
name: lint check
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install tool(s) from pypi
run: |
python -m pip install tox
- name: Run lint check
shell: bash
run: |
tox -e lint