Skip to content

Merge pull request #6 from OpenPecha/feat-prepare_data_from_text #17

Merge pull request #6 from OpenPecha/feat-prepare_data_from_text

Merge pull request #6 from OpenPecha/feat-prepare_data_from_text #17

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install -U pip
pip install .
pip install .[dev]
- name: Test with pytest
run: PYTHONPATH=src pytest
- name: Test Coverage
run: PYTHONPATH=src pytest --cov bo_rag_prep_tool