Skip to content

[AI] Fix: [AI] Keine CI/CD-Pipeline (GitHub Actions) vorhanden #2

[AI] Fix: [AI] Keine CI/CD-Pipeline (GitHub Actions) vorhanden

[AI] Fix: [AI] Keine CI/CD-Pipeline (GitHub Actions) vorhanden #2

Workflow file for this run

name: Documentation
on:
push:
branches:
- master
- ai/fix-issue-1
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-docs:
name: Build Documentation
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: false
- name: Set environment variables
run: echo "TRAVIS_BUILD_DIR=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3-pip
pip3 install --user -r doc/requirements.txt
- name: Build documentation
run: |
chmod +x tests/ci/build_docs.sh
tests/ci/build_docs.sh