test: 正常系のテスト中にエラーが発生していないことを確認 #180
Workflow file for this run
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
# Doxygenを利用してソースからドキュメントを生成できるかテストする | |
# | |
# 生成するために利用するDoxyfileは以下の通り | |
# - doxygen/Doxyfile | |
# - すべてのソースファイルからドキュメントを生成する | |
# - doxygen/Doxyfile4GeneralUsers | |
# - Controller側で利用するAPIのみをまとめたドキュメントを生成する | |
# | |
name: Doxygen | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
workflow_call: | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup Pages | |
uses: actions/configure-pages@v2 | |
- name: Run doxygen | |
uses: mattnotmitt/doxygen-action@v1.9.1 | |
with: | |
doxyfile-path: "doxygen/Doxyfile" | |
- name: Run doxygen | |
uses: mattnotmitt/doxygen-action@v1.9.1 | |
with: | |
doxyfile-path: "doxygen/Doxyfile4GeneralUsers" |