Skip to content

Bump tqdm from 4.62.3 to 4.66.3 #3

Bump tqdm from 4.62.3 to 4.66.3

Bump tqdm from 4.62.3 to 4.66.3 #3

name: Python Pre Commit Check CI
on:
pull_request:
branches:
- main # Change to the branch we want to target for PRs
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8' # Set python version to 3.8
- name: Install pre-commit dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit checks
run: |
pre-commit run --all-files