Skip to content

docs: mention chat window in Docker quick start #16

docs: mention chat window in Docker quick start

docs: mention chat window in Docker quick start #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pip install ruff
- run: ruff check src/ tests/
test-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pip install -e ".[web,dev]"
- run: pytest tests/test_components.py tests/test_advanced.py -v --ignore=tests/test_integration.py
typecheck-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pip install -e ".[web,dev]" pyright
- run: pyright src/wiesn_agent/ --level warning
lint-frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
cache-dependency-path: web/package-lock.json
- run: npm ci
- run: npx eslint src/
build-frontend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
cache-dependency-path: web/package-lock.json
- run: npm ci
- run: npx tsc -b --noEmit
- run: npm run build
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: docker build -t wiesn-agent:ci .