Add the web service implementation #37
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 tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up Podman and Buildah | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y podman buildah python3-pytest | |
- name: Build the web image | |
run: | | |
buildah bud -t tmt-web:latest . | |
- name: Create Podman pod | |
run: | | |
podman pod create --name tmt-web-pod -p 8000:8000 | |
- name: Start Redis container | |
run: | | |
podman run -d --pod tmt-web-pod --name redis redis:latest | |
- name: Start Celery container | |
run: | | |
podman run -d --pod tmt-web-pod --name celery \ | |
-e REDIS_URL=redis://redis:6379 \ | |
-e API_HOSTNAME=http://localhost:8000 \ | |
tmt-web:latest celery --app=src.api.service worker --loglevel=INFO | |
- name: Start Web container | |
run: | | |
podman run -d --pod tmt-web-pod --name web \ | |
-e REDIS_URL=redis://redis:6379 \ | |
-e API_HOSTNAME=http://localhost:8000 \ | |
tmt-web:latest uvicorn src.api:app --reload --host 0.0.0.0 --port 8000 | |
- name: Wait for services to be ready | |
run: | | |
sleep 20 # Simple wait; could be replaced with health checks | |
- name: Run tests | |
run: | | |
podman pod ps | |
python -m pytest tests/ # Adjust the path to your tests as needed | |
- name: Cleanup | |
if: always() | |
run: | | |
podman pod stop tmt-web-pod | |
podman pod rm tmt-web-pod |