about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorNoah <mounderfod@gmail.com>2022-07-08 17:36:39 +0100
committerGitHub <noreply@github.com>2022-07-08 17:36:39 +0100
commit301f5e7883cfe05577cf884cd869a302c6166d3e (patch)
tree4406777895258e4ad3d20832939c945c4156e359
parent8c8c0f10709b40405e2b111e5e983a56d7c6635d (diff)
downloaddiscobra-301f5e7883cfe05577cf884cd869a302c6166d3e.tar.gz
feat(actions): Add docs action
-rw-r--r--.github/workflows/main.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..3fac578
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,19 @@
+name: docs
+
+on:
+  push:
+    branches: [ "master" ]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    steps:
+      - uses: actions/checkout@v3
+      - uses: actions/setup-python@v3
+      - run: pip install pdoc
+      - run: pdoc -o docs/ discord
+    
+    
+
+