This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
build(deps): bump uvicorn from 0.23.2 to 0.27.1 #315
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: builds | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
docker: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- uses: abatilo/actions-poetry@v3 | |
with: | |
poetry-version: "1.7.1" | |
- name: Resolve dependencies | |
run: poetry export -f requirements.txt --without-hashes --output requirements.txt | |
- name: Build & run docker | |
env: | |
SUPERADMIN_GH_PAT: ${{ secrets.SUPERADMIN_GH_PAT }} | |
SUPERADMIN_LOGIN: dummy_login | |
SUPERADMIN_PWD: dummy_pwd | |
GH_OAUTH_ID: ${{ secrets.GH_OAUTH_ID }} | |
GH_OAUTH_SECRET: ${{ secrets.GH_OAUTH_SECRET }} | |
POSTGRES_DB: postgres | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: pg_pwd | |
OLLAMA_MODEL: tinydolphin:1.1b-v2.8-q4_0 | |
run: docker-compose up -d --build | |
- name: Debug | |
run: sleep 20 && docker-compose logs backend | |
- name: Docker sanity check | |
run: nc -vz localhost 8050 | |
- name: Debug | |
run: docker-compose logs | |
- name: Ping server | |
run: curl http://localhost:8050/docs |