Merge pull request #17 from BOSWatch/docs_test

Autobuild Docs
This commit is contained in:
Bastian Schroll 2019-10-26 15:20:03 +02:00 committed by GitHub
commit a97608548e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

30
.github/workflows/docs.yml vendored Normal file
View file

@ -0,0 +1,30 @@
name: BW Docs
on:
push:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.6
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
mkdir log/
- name: Build doxygen
run: echo 'tbd...'
- name: Build mkDocs
run: mkdocs build -f docu/mkdocs.yml
- name: Deploy docs
run: echo 'tbd...'