Update readthedocs versions #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: README Lints | |
# This matches the Maturin rules | |
on: | |
push: | |
branches: | |
- main | |
- master | |
tags: | |
- '*' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
rst: | |
name: Validate README | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4 | |
- name: "Run rst2html" | |
run: | | |
set -e | |
pip install docutils | |
rst2html --exit 2 README.rst >/dev/null |