please merge: separate compilation #154
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This action is used to perform a test build of the document that includes | |
# performing spell checking. | |
name: ci | |
on: | |
pull_request: | |
push: | |
branches: | |
master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
############################################################ | |
- name: Prepare to build the document. | |
shell: bash | |
run: tools/build/prebuild | |
############################################################ | |
- name: Build the document. | |
shell: bash | |
run: | | |
tools/build/build \ | |
-d ${{runner.temp}}/output \ | |
-v ${GITHUB_REF#refs/*/} \ | |
-s | |
############################################################ |