diff --git a/.github/workflows/rst_check.yml b/.github/workflows/rst_check.yml new file mode 100644 index 0000000..ebbf7b4 --- /dev/null +++ b/.github/workflows/rst_check.yml @@ -0,0 +1,23 @@ +name: rst_check + +on: [push, pull_request] + +jobs: + build: + steps: + - uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + + - name: Update pip and setuptools + run: | + python -m pip install --upgrade pip setuptools + + - name: Install rstcheck + run: | + python -m pip install rstcheck + + - name: Run rstcheck + run: | + rstcheck README.rst