Skip to content

Commit 0155ca4

Browse files
committed
Implement automatic API docs generation
1 parent 82d283a commit 0155ca4

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/test.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Test
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
docfx:
7+
name: 'Generate API Documentation'
8+
runs-on: 'ubuntu-latest'
9+
steps:
10+
- name: 'Checkout'
11+
uses: 'actions/checkout@v4'
12+
13+
- name: 'DocFx Build'
14+
working-directory: docfx
15+
run: |-
16+
mkdir test
17+
ls -la
18+
cd ../..
19+
mkdir test2
20+
ls -la
21+
22+
- name: 'Checkout'
23+
uses: 'actions/checkout@v4'
24+
with:
25+
ref: docfx
26+
27+
- working-directory: docfx
28+
run: |-
29+
ls -la
30+
cd ../..
31+
ls -la

0 commit comments

Comments
 (0)