From 3525d0cd61ad4e31e383b46d707a426d8edf68d9 Mon Sep 17 00:00:00 2001 From: argszero Date: Sun, 19 Jul 2026 00:37:36 +0800 Subject: [PATCH] emrg: add CI badge to README badges, mention test count and CI pipeline --- README.en.md | 6 +++++- README.md | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.en.md b/README.en.md index 3f71432..a535dd9 100644 --- a/README.en.md +++ b/README.en.md @@ -8,6 +8,7 @@ Python License Status + Tests PRs Welcome

@@ -206,10 +207,12 @@ EMRG doesn't just keep up — it catches up on its own. git clone https://github.com/argszero/emrg.git cd emrg uv sync # install deps -uv run pytest tests/ -v # run tests +uv run pytest tests/ -v # run tests (currently 159 items) uv run python -m emrg # launch ``` +CI runs tests and checks for conflict markers automatically via GitHub Actions (`.github/workflows/test.yml`). + ### Project structure ``` @@ -221,6 +224,7 @@ emrg/ │ ├── skills/ # Dynamically loadable modules │ └── __main__.py # CLI entry point ├── tests/ +├── .github/workflows/ # CI pipeline (pytest + conflict marker check) ├── MANIFESTO.md # Design constitution └── pyproject.toml ``` diff --git a/README.md b/README.md index dbc144e..9d580b2 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Python License Status + Tests PRs Welcome

@@ -202,10 +203,12 @@ EMRG 不只是追赶——它自己追上来。 git clone https://github.com/argszero/emrg.git cd emrg uv sync # 安装依赖 -uv run pytest tests/ -v # 跑测试 +uv run pytest tests/ -v # 跑测试(当前 159 项) uv run python -m emrg # 启动 ``` +CI 通过 GitHub Actions 自动运行测试并检查冲突标记(`.github/workflows/test.yml`)。 + ### 项目结构 ``` @@ -217,6 +220,7 @@ emrg/ │ ├── skills/ # 动态加载模块 │ └── __main__.py # CLI 入口 ├── tests/ +├── .github/workflows/ # CI 流水线(pytest + 冲突标记检查) ├── MANIFESTO.md # 设计宪章 └── pyproject.toml ```