chore: テキストファイルの改行コードがLFになるように設定を追加 #219
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@v3 | |
- name: Run doxygen | |
uses: mattnotmitt/doxygen-action@v1.9.5 | |
with: | |
doxyfile-path: "doxygen/Doxyfile" | |
- name: Run doxygen | |
uses: mattnotmitt/doxygen-action@v1.9.5 | |
with: | |
doxyfile-path: "doxygen/Doxyfile4GeneralUsers" |