Use apt-get doxygen instead of conda-forge doxygen #5266
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2020-2021 | |
# | |
# This file is part of HiPACE++. | |
# | |
# Authors: Axel Huebl, MaxThevenet, Severin Diederichs | |
# License: BSD-3-Clause-LBNL | |
name: source | |
on: [push, pull_request] | |
jobs: | |
style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Non-ASCII characters | |
run: .github/workflows/source/hasNonASCII | |
- name: TABs | |
run: .github/workflows/source/hasTabs | |
- name: End-of-Line whitespaces | |
run: .github/workflows/source/hasEOLwhiteSpace | |
- name: Proper file names in Examples | |
run: .github/workflows/source/wrongFileNameInExamples | |
# - name: Examples are tested | |
# run: .github/workflows/source/inputsNotTested | |
documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install | |
run: sudo apt-get install -y --no-install-recommends doxygen | |
- name: Doxygen | |
run: .github/workflows/source/buildDoxygen |