Skip to content

Commit

Permalink
doctree modified and check punctuation (#3)
Browse files Browse the repository at this point in the history
doctree modified and check punctuation
  • Loading branch information
shuo-young committed Dec 4, 2021
1 parent 4ab393a commit e3925ea
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 11 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.7'

# Runs a single command using the runners shell
- name: install dependencies
uses: mstksg/get-package@v1
with:
apt-get: openssl curl

# Runs a set of commands using the runners shell
- name: install requirements
uses: logikal-code/pip-install@v1.0.0
with:
requirements: ./requirements.txt

- name: run make html
run: make html

# Runs a shell script
- name: script
run: bash ./.ci/ci_check.sh
19 changes: 8 additions & 11 deletions index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ Liquid
<p class="title-initial">S</p><p class="title-rest">ecurity</p>
</div>
<ul>
<li>
提供<a href="./docs/asset/asset.html">线性资产模型</a>确保链上资产类应用具备金融级安全性
</li>
<li>
支持在智能合约内部便捷地编写单元测试用例,可通过内嵌的区块链模拟环境直接在本地执行
</li>
Expand Down Expand Up @@ -84,7 +81,7 @@ Liquid
</div>
<ul>
<li>
能够根据业务需求对编程模型、语言文法的进行深度定制。目前已集成<a href="./docs/pdc/introduction.html">可编程分布式协作编程模型</a>
能够根据业务需求对编程模型、语言文法的进行深度定制</a>
</li>
<li>
未来将进一步探索如何与跨链协同等编程范式相结合
Expand Down Expand Up @@ -138,18 +135,18 @@ Liquid
:hidden:
:caption: 线性资产模型

docs/asset/asset.md
·· docs/asset/asset.md

.. toctree::
:hidden:
:caption: 可编程分布式协作

docs/pdc/introduction.md
docs/pdc/basic.md
docs/pdc/selector.md
docs/pdc/right.md
docs/pdc/utilities.md
docs/pdc/authority.md
·· docs/pdc/introduction.md
·· docs/pdc/basic.md
·· docs/pdc/selector.md
·· docs/pdc/right.md
·· docs/pdc/utilities.md
·· docs/pdc/authority.md

.. toctree::
:hidden:
Expand Down

0 comments on commit e3925ea

Please sign in to comment.