Skip to content

[INFRA] CI

[INFRA] CI #215

# SPDX-FileCopyrightText: 2006-2024, Knut Reinert & Freie Universität Berlin
# SPDX-FileCopyrightText: 2016-2024, Knut Reinert & MPI für molekulare Genetik
# SPDX-License-Identifier: CC0-1.0
name: Documentation
on:
push:
branches:
- 'main'
pull_request:
types:
- unlabeled
workflow_dispatch:
concurrency:
group: documentation-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name != 'push' }}
env:
TZ: Europe/Berlin
defaults:
run:
shell: bash -Eexuo pipefail {0}
jobs:
build:
name: Documentation
runs-on: ubuntu-latest
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Doxygen
uses: seqan/actions/setup-doxygen@main
with:
doxygen: 1.10.0
- name: Configure tests
run: |
mkdir build && cd build
cmake ../test/documentation
make -j download-cppreference-doxygen-web-tag
- name: Run tests
working-directory: build
run: ctest . -j --output-on-failure