Skip to content

Bump pylint from 3.3.2 to 3.3.3 in /data-pipeline #42

Bump pylint from 3.3.2 to 3.3.3 in /data-pipeline

Bump pylint from 3.3.2 to 3.3.3 in /data-pipeline #42

# This workflow will install lint the Python code.
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Lint Python Data Pipeline Code
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_call:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
cd data-pipeline
poetry install --with dev
- name: Lint with pylint
run: |
cd data-pipeline
poetry run pylint $(git ls-files '*.py')