Files
confgen/.gitea/workflows/ci.yml
7000pctAUTO 6bb16babf6
Some checks failed
CI / test (push) Failing after 1s
Use GITHUB_ENV for PYTHONPATH
2026-02-01 21:05:43 +00:00

19 lines
421 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: whoami
- run: python3 --version
- name: Install dependencies
run: pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit tomli
- name: Set PYTHONPATH
run: echo "PYTHONPATH=/app" >> $GITHUB_ENV
- name: Run tests
run: pytest /app/tests/ -v --tb=short