Skip to content

fix : Remove pkl support for reading datasets #1007

fix : Remove pkl support for reading datasets

fix : Remove pkl support for reading datasets #1007

Workflow file for this run

name: Pre-commit
on:
pull_request:
branches: [main, master]
push:
branches: [main, master]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pre-commit
- name: Run pre-commit
run: |
pre-commit run --all-files --show-diff-on-failure