Create chunk_documents.yml #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Chunk Documents | |
on: [push] | |
jobs: | |
Chunk-Documents: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/[email protected] | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: 3.12.4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r ./chunker/requirements.txt |