Skip to content

Adding new Webots Reset Handler Tutorial #8947

Adding new Webots Reset Handler Tutorial

Adding new Webots Reset Handler Tutorial #8947

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies with pip
run: pip install --no-warn-script-location --user --upgrade -r requirements.txt
- name: Test doc8
run: make test
build:
needs: test
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Install dependencies with pip
run: pip install --no-warn-script-location --user --upgrade -r requirements.txt
- name: Build the docs
run: make html