From 2319ab7d2012a8c84013aab12e588613b376debc Mon Sep 17 00:00:00 2001 From: Ju4tCode <42488585+yanyongyu@users.noreply.github.com> Date: Wed, 23 Sep 2020 23:32:34 +0800 Subject: [PATCH] :construction_worker: update api docs ci --- .github/workflows/api_docs.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/api_docs.yml b/.github/workflows/api_docs.yml index 346e5bfb..4657d98e 100644 --- a/.github/workflows/api_docs.yml +++ b/.github/workflows/api_docs.yml @@ -13,11 +13,17 @@ jobs: - uses: actions/checkout@v2 with: ref: ${{ github.event.pull_request.head.sha }} + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.8 + architecture: "x64" - name: Install Dependences run: | - pip3 install poetry - poetry install + python -m pip install --upgrade pip + pip install . - name: Build Doc run: sphinx-build -M markdown ./docs_build ./build