Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.
Open
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
24 changes: 24 additions & 0 deletions .github/workflows/verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,3 +220,27 @@ jobs:
path: ./gen
- name: Test
run: ./scripts/test_diff.sh

test-docs:
runs-on: ubuntu-latest
name: Test Docs
steps:
- name: "Set up Go"
uses: actions/setup-go@v3
with:
go-version: 1.17.0
- run: |
go install github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc@latest
export PATH=${PATH}:`go env GOPATH`/bin
echo $PATH
protoc --version
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: "0"
- name: Set up Docker
uses: docker-practice/actions-setup-docker@master
- name: Generate Docs
run: make generate
- name: Test Docs
run: ./scripts/test_diff.sh