mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-05 08:06:15 +00:00
* refactor(packaging): reorganize published packages * fix(packaging): install AgentScope extra in wheel smoke * docs: align package guides and documentation site * ci(workflow): add core dependency verification step in Python package build - Add a workflow step to verify released core dependencies by installing the wheel with core extras - Assert the presence of the static index.html file to ensure proper package contents - Create and use a temporary virtual environment for isolation during verification - Keep existing artifacts upload step intact and conditional on inputs.upload_artifacts flag * fix(ci): update package installation dependencies in Windows workflow - Change pip install from editable reme_studio and core to only dev and as extras - Remove installation of reme_studio and core to streamline dependency setup - Ensure Windows CI uses the correct extras for testing environment * fix(tests): add missing commas in toml file reads in package version tests - Added trailing commas in the tomllib.loads calls for auto-fin and daily_paper configs - Ensured consistent syntax to prevent potential tuple misinterpretation - Improved readability and correctness of the test setup code * fix(packaging): protect qwenpaw releases and test Studio health
50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
name: CI / Documentation
|
|
|
|
on:
|
|
push:
|
|
branches: [main, master, dev, develop]
|
|
paths:
|
|
- '.github/workflows/ci-docs.yml'
|
|
- '.github/workflows/_build-docs.yml'
|
|
- 'AGENTS.md'
|
|
- 'README.md'
|
|
- 'README_ZH.md'
|
|
- 'docs/**'
|
|
- 'github-pages/**'
|
|
- 'reme_studio/README*.md'
|
|
- 'reme_studio/public/og.jpg'
|
|
- 'typescript/README*.md'
|
|
- 'plugins/*/README*.md'
|
|
- 'benchmark/*/README*.md'
|
|
- 'skills/reme_memory/SKILL.md'
|
|
pull_request:
|
|
branches: [main, master, dev, develop]
|
|
paths:
|
|
- '.github/workflows/ci-docs.yml'
|
|
- '.github/workflows/_build-docs.yml'
|
|
- 'AGENTS.md'
|
|
- 'README.md'
|
|
- 'README_ZH.md'
|
|
- 'docs/**'
|
|
- 'github-pages/**'
|
|
- 'reme_studio/README*.md'
|
|
- 'reme_studio/public/og.jpg'
|
|
- 'typescript/README*.md'
|
|
- 'plugins/*/README*.md'
|
|
- 'benchmark/*/README*.md'
|
|
- 'skills/reme_memory/SKILL.md'
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
documentation:
|
|
name: Test and build documentation
|
|
uses: ./.github/workflows/_build-docs.yml
|
|
with:
|
|
run_tests: true
|