diff --git a/.github/workflows/docs-check.yml b/.github/workflows/docs-check.yml new file mode 100644 index 0000000000000..a871d651ec1b2 --- /dev/null +++ b/.github/workflows/docs-check.yml @@ -0,0 +1,17 @@ +name: "Docs check" +# https://github.com/marketplace/actions/sphinx-build + +on: +- pull_request + +jobs: + docs: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: ammaraskar/sphinx-action@master + with: + # git is requried to clone the docs theme + pre-build-command: "apt-get update -y && apt-get install -y git" + docs-folder: "docs/" + repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/docs/source/apex.rst b/docs/source/apex.rst index 3c6b86c7a4507..e1c7a1b2c8364 100644 --- a/docs/source/apex.rst +++ b/docs/source/apex.rst @@ -57,4 +57,3 @@ TPU 16-bit # turn on 16-bit trainer = Trainer(num_tpu_cores=8, precision=16) -