Files
explore-agentic/.gitea/workflows/test.yaml
T
dev 490f92935e
Test Workflow / test (push) Failing after 1m53s
feat: add uv-based project with pytest and CI workflow
- Add pyproject.toml and uv.lock for Python project with uv
- Add src/__init__.py with add(), multiply(), greet() functions
- Add tests/test_example.py with unit tests
- Add commit-message skill for Conventional Commits
- Add Gitea Actions workflow to run pytest
2026-04-25 23:41:02 +02:00

24 lines
467 B
YAML

name: Test Workflow
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: uv sync --extra test
- name: Run tests
run: uv run pytest tests/ -v