mirror of
https://github.com/bytedance/g3.git
synced 2026-04-28 11:40:54 +00:00
25 lines
453 B
YAML
25 lines
453 B
YAML
name: Sphinx-Doc
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'g3proxy/doc/**'
|
|
- 'g3tiles/doc/**'
|
|
pull_request:
|
|
paths:
|
|
- 'g3proxy/doc/**'
|
|
- 'g3tiles/doc/**'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
component:
|
|
- g3proxy
|
|
- g3tiles
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ammaraskar/sphinx-action@master
|
|
with:
|
|
docs-folder: "${{ matrix.component }}/doc/"
|