浏览代码

Generate / validate docs in github action.

Jelmer Vernooij 2 年之前
父节点
当前提交
3c079c58a2
共有 1 个文件被更改,包括 21 次插入0 次删除
  1. 21 0
      .github/workflows/docs.yml

+ 21 - 0
.github/workflows/docs.yml

@@ -0,0 +1,21 @@
+
+name: API Docs
+
+on:
+  push:
+  pull_request:
+  schedule:
+    - cron: "0 6 * * *" # Daily 6AM UTC build
+
+jobs:
+  test:
+    runs-on: ubuntu-latest
+
+    steps:
+      - uses: actions/checkout@v2
+      - name: Set up Python
+        uses: actions/setup-python@v2
+      - name: Install pydoctor
+        run: sudo apt-get update && sudo apt-get install -y pydoctor
+      - name: Generate docs
+        run: make apidocs