Skip to content

Bump pylint from 3.3.2 to 3.3.3 #535

Bump pylint from 3.3.2 to 3.3.3

Bump pylint from 3.3.2 to 3.3.3 #535

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
name: python-${{ matrix.python }}
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup python-${{ matrix.python }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install Dependencies
run: pip install ".[dev]"
- name: Test
run: pytest
- name: Lint (pylint)
run: pylint trackpack test
- name: Lint (ruff)
run: ruff check --output-format=github .
formatting:
name: formatting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup Python
uses: actions/setup-python@main
with:
python-version: "3.13"
cache: 'pip'
- name: Setup
run: pip install ".[dev]"
- name: Check Formatting
run: ruff format --check --diff .