Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dependencies for "Build Documentation" workflow and run on PR #2108

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@ name: 'Build Documentation'
on:
push:
branches: [ main, stable, oldstable ]
pull_request:
branches: [ main, stable, oldstable ]

jobs:
generate-doc-and-upload-coverage:
name: Build XML documentation and upload coverage
runs-on: ubuntu-latest
container: greenbone/doxygen
steps:
- name: Install gvmd doc dependencies
run: |
apt update
apt install --no-install-recommends -y xmltoman xsltproc
rm -rf /var/lib/apt/lists/*
timopollmeier marked this conversation as resolved.
Show resolved Hide resolved
- name: Run the c lang coverage action
uses: greenbone/actions/doc-coverage-clang@v3

Expand Down
Loading