-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from UmbrellaLeaf5/umbrella_documenting
add full working (I hope) doxygen documentation to project
- Loading branch information
Showing
4 changed files
with
2,931 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,51 @@ | ||
name: Doxygen | ||
|
||
on: | ||
# Runs on pushes targeting the default branch | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
permissions: | ||
pages: write | ||
deployments: write | ||
id-token: write | ||
|
||
jobs: | ||
# Single deploy job since we're just deploying | ||
docs: | ||
runs-on: windows-latest | ||
runs-on: ubuntu-latest | ||
|
||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
||
steps: | ||
- name: Check Software | ||
run: echo "Check Software" | ||
|
||
# Клонируем сам репозиторий | ||
- name: Checkout | ||
run: echo "Checkout" | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
|
||
- name: Install Doxygen | ||
run: echo "Install Doxygen" | ||
run: sudo apt install doxygen && doxygen --version | ||
|
||
- name: Install Graphviz | ||
run: sudo apt install graphviz | ||
|
||
- name: Run Doxygen | ||
run: echo "Run Doxygen" | ||
run: doxygen doxyfile | ||
|
||
- name: Upload Docs | ||
run: echo "Upload Docs" | ||
|
||
- name: Upload Docs | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
# Upload entire repository | ||
path: './doxygen/html/' | ||
|
||
- name: Setup Pages | ||
run: echo "Setup Pages" | ||
|
||
uses: actions/configure-pages@v5 | ||
- name: Deploy To GitHub Pages | ||
run: echo "Deploy To GitHub Pages" | ||
id: deployment | ||
uses: actions/deploy-pages@v4 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,3 +79,4 @@ compile_commands.json | |
build | ||
.vscode | ||
qcustomplot | ||
doxygen |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[Documentation](https://umbrellaleaf5.github.io/locus_no_pilotus/index.html "documentation generated with doxygen") |
Oops, something went wrong.