mirror of
https://github.com/bohd4nx/FragmentAPI.git
synced 2026-07-25 06:14:29 +00:00
24 lines
474 B
YAML
24 lines
474 B
YAML
name: Docs Branch Check
|
|
|
|
on:
|
|
push:
|
|
branches: [docs]
|
|
pull_request:
|
|
branches: [docs]
|
|
|
|
jobs:
|
|
docs-tree:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7.0.1
|
|
|
|
- name: Ensure docs structure exists
|
|
run: |
|
|
test -f docs/README.md
|
|
test -f docs/SUMMARY.md
|
|
test -d docs/getting-started
|
|
test -d docs/client
|
|
test -d docs/reference
|
|
test -d docs/advanced
|