Skip to content

Commit

Permalink
workflows: Add documentation workflow (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkuhn committed May 23, 2021
1 parent f064c75 commit 8d7fa56
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Documentation
on:
push:
branches:
- master
jobs:
documentation:
name: Documentation
runs-on: ubuntu-20.04
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install dependencies
run: |
sudo apt update || true
sudo apt --yes --no-install-recommends install doxygen
- name: Generate documentation
run: |
doxygen

0 comments on commit 8d7fa56

Please sign in to comment.