Skip to content

Bump pandas from 2.1.4 to 2.2.1 #98

Bump pandas from 2.1.4 to 2.2.1

Bump pandas from 2.1.4 to 2.2.1 #98

Workflow file for this run

name: Code formatter
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
- name: Analysing the code with black
run: |
black --diff --check $(git ls-files '*.py')