Skip to content

build(deps-dev): bump ruff from 0.5.1 to 0.5.2 #503

build(deps-dev): bump ruff from 0.5.1 to 0.5.2

build(deps-dev): bump ruff from 0.5.1 to 0.5.2 #503

Workflow file for this run

name: builds
on:
push:
branches: main
pull_request:
branches: main
jobs:
backend:
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.8.2"
- name: Resolve dependencies
run: poetry export -f requirements.txt --without-hashes --output requirements.txt
- name: Build, run & check docker
env:
SUPERADMIN_GH_PAT: ${{ secrets.SUPERADMIN_GH_PAT }}
GH_OAUTH_ID: ${{ secrets.GH_OAUTH_ID }}
GH_OAUTH_SECRET: ${{ secrets.GH_OAUTH_SECRET }}
OLLAMA_MODEL: tinydolphin:1.1b-v2.8-q3_K_M
run: |
docker compose -f docker-compose.dev.yml up -d --build --wait backend
docker compose -f docker-compose.dev.yml logs
curl http://localhost:5050/status
grafana:
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.8.2"
- name: Resolve dependencies
run: |
poetry export -f requirements.txt --without-hashes --output requirements.txt
- name: Build, run & check docker
env:
SUPERADMIN_GH_PAT: ${{ secrets.SUPERADMIN_GH_PAT }}
GH_OAUTH_ID: ${{ secrets.GH_OAUTH_ID }}
GH_OAUTH_SECRET: ${{ secrets.GH_OAUTH_SECRET }}
OLLAMA_MODEL: tinydolphin:1.1b-v2.8-q3_K_M
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: pg_pwd
SUPERADMIN_LOGIN: dummy_login
SUPERADMIN_PWD: dummy_pwd
GF_ADMIN_USER: dummy_login
GF_ADMIN_PWD: dummy_pwd
run: |
docker compose -f docker-compose.yml up -d --build --wait grafana
docker compose -f docker-compose.yml logs
curl http://localhost:3000
gradio:
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.8.2"
- name: Resolve dependencies
run: |
poetry export -f requirements.txt --without-hashes --output requirements.txt
poetry export -f requirements.txt --without-hashes --only demo --output demo/requirements.txt
- name: Build, run & check docker
env:
SUPERADMIN_GH_PAT: ${{ secrets.SUPERADMIN_GH_PAT }}
GH_OAUTH_ID: ${{ secrets.GH_OAUTH_ID }}
GH_OAUTH_SECRET: ${{ secrets.GH_OAUTH_SECRET }}
OLLAMA_MODEL: tinydolphin:1.1b-v2.8-q3_K_M
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: pg_pwd
SUPERADMIN_LOGIN: dummy_login
SUPERADMIN_PWD: dummy_pwd
GF_ADMIN_USER: dummy_login
GF_ADMIN_PWD: dummy_pwd
run: |
docker compose -f docker-compose.yml up -d --build --wait gradio
docker compose -f docker-compose.yml logs
curl http://localhost:7860