Skip to content

Commit

Permalink
Merge pull request #30 from UmbrellaLeaf5/umbrella_documenting
Browse files Browse the repository at this point in the history
add full working (I hope) doxygen documentation to project
  • Loading branch information
MrWh1teF0x authored Apr 11, 2024
2 parents 2a796e6 + 29497a6 commit c567cb1
Show file tree
Hide file tree
Showing 4 changed files with 2,931 additions and 14 deletions.
45 changes: 31 additions & 14 deletions .github/workflows/doxygen.yml
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

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,4 @@ compile_commands.json
build
.vscode
qcustomplot
doxygen
1 change: 1 addition & 0 deletions README.md
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")
Loading

0 comments on commit c567cb1

Please sign in to comment.