Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check docs on pull request #45

Merged
merged 1 commit into from
Sep 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,14 @@ jobs:
java-version: '8.0.212'
- name: Run Maven Tests
run: ./mvnw clean verify
docs:
name: Build Documentation
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Install virtualenv
run: sudo pip3 install virtualenv
- name: Build documentation
run: |
export PATH=/usr/local/bin:$PATH
./docs/build.sh -r development -v development
4 changes: 2 additions & 2 deletions docs/src/lifecycle/diagnosis.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ to see if you can get it to work.

Installation Issues
-------------------
When you're running ``titan install``, the server container may or may not
When you're running :ref:`cli_cmd_install`, the server container may or may not
be running successfully. In these cases, you can use ``docker logs titan-launch``
to see what may be going on within the process. The lines denoted ``TITAN` are
to see what may be going on within the process. The lines denoted ``TITAN`` are
designed to be more user-readable, while the other error messages may be
internal.

Expand Down