Fail only for test results, run rail horizon tests #17
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
--- | |
# SPDX-FileCopyrightText: Copyright DB Netz AG | |
# SPDX-License-Identifier: CC0-1.0 | |
name: Rail Horizon Documentation | |
on: | |
push: | |
branches: | |
# - main | |
- '**' | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Rail Horizon code including submodules recursively | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y doxygen | |
- name: Create output directory | |
run: mkdir -p build/docs | |
- name: Create doxygen documentation | |
run: doxygen ./docs/Doxyfile.in | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
folder: build/docs/html | |
branch: gh-pages |