Files
confgen/.gitea/workflows/ci.yml
7000pctAUTO 328d64b126
Some checks failed
CI / test (push) Failing after 1s
Install dependencies then run tests
2026-02-01 21:04:39 +00:00

20 lines
430 B
YAML

name: CI
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: whoami
- run: python3 --version
- name: Install package dependencies
run: |
pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit
- name: Install confgen in dev mode
run: pip install -e /app
- name: Run tests
run: pytest /app/tests/ -v --tb=short