Skip to content

Bump langchain-text-splitters from 0.3.8 to 1.0.0a1 #34

Bump langchain-text-splitters from 0.3.8 to 1.0.0a1

Bump langchain-text-splitters from 0.3.8 to 1.0.0a1 #34

Workflow file for this run

name: Run Tests
on:
pull_request:
branches: [ main, master ]
push:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: |
python -m pytest tests/ -v --tb=short
env:
PYTHONPATH: .