From 0726141aef44141f4336c6215e83d70c5f144077 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Sun, 13 Aug 2023 11:49:06 +0300 Subject: [PATCH] github: run rst-lint --- .github/workflows/makefile.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 6259e62f..dfe562ec 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -19,6 +19,16 @@ jobs: - name: Style check run: make check + rst: + name: Check reStructuredText + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + - run: pip install restructuredtext_lint + - name: reStructuredText check + run: make check-rst + examples: name: Check examples runs-on: ubuntu-latest