You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
eeca2c3cbe
This builds docs, but only on pull requests that change a file in the docs/ directory.
19 lines
307 B
YAML
19 lines
307 B
YAML
name: Build docs
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- docs/**
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v1
|
|
- name: Install Python packages
|
|
run: pip install Sphinx
|
|
- name: Build docs
|
|
run: make -C docs/ html
|