Skip to content

修复断点续传bug,过滤已经存在的文档是只过滤状态是已经处理完成的 #335

修复断点续传bug,过滤已经存在的文档是只过滤状态是已经处理完成的

修复断点续传bug,过滤已经存在的文档是只过滤状态是已经处理完成的 #335

Workflow file for this run

name: Linting and Formatting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run pre-commit
run: pre-commit run --all-files