Skip to content

SECURITY: Update snowflake-connector-python to 3.13.2 to fix SQL inje… #1364

SECURITY: Update snowflake-connector-python to 3.13.2 to fix SQL inje…

SECURITY: Update snowflake-connector-python to 3.13.2 to fix SQL inje… #1364

Workflow file for this run

name: Pylint
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Install dependencies
run: |
pipenv sync --dev
- name: Run pylint
run: |
pipenv run pylint $(git ls-files '*.py')