Skip to content

docs: setup docs

docs: setup docs #6

Workflow file for this run

name: ci-docs
on: [push, pull_request]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: install dependencies

Check failure on line 13 in .github/workflows/ci-docs.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-docs.yaml

Invalid workflow file

You have an error in your yaml syntax on line 13
run:
pip install -r docs/requirements.txt
- name: build
run: |
mkdir build
cd build
cmake -DETHC_BUILD_DOCS=ON ..
make doxygen
make sphinx