Skip to content

Update README.md

Update README.md #47

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [ docker-compose ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Install Playwright browsers
run: |
python -m playwright install
- name: Start application
run: |
nohup python -m uvicorn app.main:app --host 0.0.0.0 --port 8181 &
sleep 10
- name: Check if server is running
run: |
curl -f http://localhost:8181/
- name: Run unit-tests
run: |
python -m pytest tests/test_unit.py -v
docker:
runs-on: ubuntu-latest
needs: test
if: success()
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.TOKEN }}
- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository }}/catty-reminders
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}