Skip to content

Update beautifulsoup4 requirement from ~=4.12.3 to ~=4.13.1 #70

Update beautifulsoup4 requirement from ~=4.12.3 to ~=4.13.1

Update beautifulsoup4 requirement from ~=4.12.3 to ~=4.13.1 #70

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov
- name: Run linter
run: |
pip install flake8
flake8 --per-file-ignores=neo4j_manager.py:W291 --max-line-length=140 --count --statistics --exit-zero ./graph_rag
- name: Run tests
run: |
pytest --cov=graph_rag
env:
PYTHONPATH: .