👷 reuse workflow setup step

This commit is contained in:
yanyongyu
2022-01-13 16:41:01 +08:00
parent a8a1b4d65d
commit b52ccc3690
6 changed files with 55 additions and 102 deletions

View File

@ -13,37 +13,11 @@ jobs:
ref: master
token: ${{ secrets.GH_TOKEN }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
architecture: "x64"
- name: Setup Python Environment
uses: ./.github/actions/setup-python
- uses: Gr1N/setup-poetry@v7
- uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Packages
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
- name: Set up dependencies
run: |
poetry install -E all
- name: Setup Node Environment
uses: ./.github/actions/setup-node
- name: Build Doc
run: poetry run sphinx-build -M markdown ./docs_build ./build
@ -53,7 +27,6 @@ jobs:
- name: Archive Files
run: |
yarn install
yarn prettier
yarn archive $(poetry version -s)