25 lines
498 B
YAML
25 lines
498 B
YAML
name: PlatformIO CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- ghactions
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install dependant theme
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install sphinx_rtd_theme
|
|
|
|
- uses: ammaraskar/sphinx-action@master
|
|
with:
|
|
docs-folder: "src_docs/"
|
|
build-command: "sphinx-build -b html ./source ../docs"
|
|
|
|
# .nojekyll file must exist in docs |