Skip to content

sanitize profile URI #34

sanitize profile URI

sanitize profile URI #34

Workflow file for this run

name: Pylint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pylint:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.12"
- "3.13"
- "3.14"
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run pylint
run: |
pylint $( git ls-files '*.py' )
- name: Test import
run: |
python -c "import rtbnext"