Skip to content

Add ragstack package #2

Add ragstack package

Add ragstack package #2

Workflow file for this run

name: RAGStack CI
on:
pull_request:
branches:
- main
jobs:
tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: 'Setup: Python 3.11'
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
- name: Run tests
run: |
pytest tests