Skip to content

Add public roadmap to the community site #10

Add public roadmap to the community site

Add public roadmap to the community site #10

Workflow file for this run

name: Continuous Integration
on:
# We have deploy there
# push:
# branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "true"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: pip install -r .devcontainer/requirements.txt
- name: Build the docs
run: mkdocs build