v1.8.2: AGENTS.md, consent revocation, delete bot users, dialogues fix, intent improvements, CI for max_bot
This commit is contained in:
@@ -60,3 +60,42 @@ jobs:
|
||||
- name: Test summary
|
||||
if: always()
|
||||
run: echo "CI test run complete"
|
||||
|
||||
test-max-bot:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:15
|
||||
env:
|
||||
POSTGRES_DB: aegisone
|
||||
POSTGRES_USER: aegisone
|
||||
POSTGRES_PASSWORD: aegisone_pass
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 5s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.12"
|
||||
|
||||
- name: Install dependencies
|
||||
working-directory: max_bot
|
||||
run: |
|
||||
pip install -r requirements.txt
|
||||
|
||||
- name: Run tests
|
||||
working-directory: max_bot
|
||||
run: |
|
||||
pytest tests/ -v --tb=short -x
|
||||
|
||||
- name: Test summary
|
||||
if: always()
|
||||
run: echo "max_bot CI test run complete"
|
||||
|
||||
Reference in New Issue
Block a user