Skip to content

Bump pandas from 2.0.3 to 2.1.2 #213

Bump pandas from 2.0.3 to 2.1.2

Bump pandas from 2.0.3 to 2.1.2 #213

Workflow file for this run

name: Pylint
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Sleep for 5min to let Jenkins checks start
uses: jakejarvis/wait-action@master
with:
time: '5m'
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(find . -name "*.py" | xargs) --rcfile=.pylintrc