Skip to content

Implement NarrativeMind class for virtual human simulation #46

Implement NarrativeMind class for virtual human simulation

Implement NarrativeMind class for virtual human simulation #46

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: |
pyproject.toml
requirements.txt
- name: Set up Python 3.11 for pre-commit
if: matrix.python-version != '3.11'
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
pip install pytest-github-actions-annotate-failures
- name: Run tests
run: |
pytest tests/ --cov=src --cov-report=xml