Initial upload: Project Scaffold CLI with multi-language templates and CI/CD

This commit is contained in:
2026-02-05 11:01:24 +00:00
parent de61e3e872
commit 1286d5a953

View File

@@ -0,0 +1,43 @@
stages:
- lint
- test
- build
lint:
stage: lint
image: python:3.11
script:
- pip install flake8 black
- flake8 .
- black --check .
only:
- main
- master
test:
stage: test
image: python:3.11
script:
- pip install -e ".[dev]"
- pytest -v --cov={{ project_slug }} --cov-report=html
artifacts:
reports:
junit: test-results.xml
paths:
- htmlcov/
only:
- main
- master
build:
stage: build
image: python:3.11
script:
- pip install build
- python -m build
artifacts:
paths:
- dist/
only:
- main
- tags