Initial upload: Project Scaffold CLI with multi-language templates and CI/CD
Some checks failed
CI / test (push) Failing after 4m53s

This commit is contained in:
2026-02-05 11:01:27 +00:00
parent 1180db53cf
commit ba53f56a89

34
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,34 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout: 600
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests
run: pytest -xvs --tb=short
- name: Run linting
run: ruff check .