Skip to content

Merge branch 'master' of https://github.com/wuhanstudio/whitebox-adve… #73

Merge branch 'master' of https://github.com/wuhanstudio/whitebox-adve…

Merge branch 'master' of https://github.com/wuhanstudio/whitebox-adve… #73

Workflow file for this run

name: website
# build the documentation whenever there are new commits on main
on:
push:
branches:
- master
# Alternative: only build for tags.
# tags:
# - '*'
# security: restrict permissions for CI jobs.
permissions:
contents: read
jobs:
# Build the documentation and upload the static HTML files as an artifact.
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
# ADJUST THIS: install all dependencies (including pdoc)
- run: python3 -m pip install --upgrade pip
- run: python3 -m pip install pdoc pytest lark carla
- run: python3 -m pip install -e .
# ADJUST THIS: build your documentation into docs/.
# We use a custom build script for pdoc itself, ideally you just run `pdoc -o docs/ ...` here.
- run: pytest