Simplified CI workflow
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-02-01 21:06:28 +00:00
parent 6bb16babf6
commit 536423278e

View File

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