mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
48 lines
1.2 KiB
YAML
48 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'
|
|
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'
|
|
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
|