Skip to content

feat: Enhance chat type handling and rule formatting in dispatch system #94

feat: Enhance chat type handling and rule formatting in dispatch system

feat: Enhance chat type handling and rule formatting in dispatch system #94

Workflow file for this run

name: Run Tests
on:
push:
branches:
- refactoring-v3-mvp
pull_request:
branches:
- refactoring-v3-mvp
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Docker
uses: docker/setup-docker-action@v4
- name: Build Docker image
run: |
docker build -t test-image .
- name: Run tests in Docker
run: |
docker run test-image sh -c "python -m pip install pytest coverage pytest-cov && python -m pytest -v --cov=framework --cov-report=term-missing"