feat: add workflow to build + test docker container #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run docker integration tests | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set permissions for log directory | |
run: | | |
mkdir -p /home/runner/.memgpt/logs | |
sudo chown -R $USER:$USER /home/runner/.memgpt/logs | |
chmod -R 755 /home/runner/.memgpt/logs | |
- name: Build and run docker dev server | |
env: | |
MEMGPT_PG_DB: memgpt | |
MEMGPT_PG_USER: memgpt | |
MEMGPT_PG_PASSWORD: memgpt | |
MEMGPT_PG_PORT: 8888 | |
MEMGPT_SERVER_PASS: test_server_token | |
run: docker compose -f dev-compose.yaml up --build -d | |
- name: Wait for service | |
run: bash scripts/wait_for_service.sh http://localhost:8083 -- echo "Service is ready" | |
- name: "Setup Python, Poetry and Dependencies" | |
uses: packetcoders/action-setup-cache-python-poetry@main | |
with: | |
python-version: "3.11" | |
poetry-version: "1.7.1" | |
install-args: "-E dev" | |
- name: Run tests with pytest | |
env: | |
MEMGPT_PG_DB: memgpt | |
MEMGPT_PG_USER: memgpt | |
MEMGPT_PG_PASSWORD: memgpt | |
MEMGPT_PG_PORT: 8888 | |
MEMGPT_SERVER_PASS: test_server_token | |
MEMGPT_SERVER_URL: http://localhost:8083 | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
PYTHONPATH: ${{ github.workspace }}:${{ env.PYTHONPATH }} | |
run: poetry run pytest -s tests/test_client.py |