Skip to content

Commit 8d7fa56

Browse files
committed
workflows: Add documentation workflow (#104)
1 parent f064c75 commit 8d7fa56

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/documentation.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Documentation
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
documentation:
8+
name: Documentation
9+
runs-on: ubuntu-20.04
10+
timeout-minutes: 30
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
with:
15+
persist-credentials: false
16+
- name: Install dependencies
17+
run: |
18+
sudo apt update || true
19+
sudo apt --yes --no-install-recommends install doxygen
20+
- name: Generate documentation
21+
run: |
22+
doxygen

0 commit comments

Comments
 (0)