Add script: merged PR count per author aggregated by week over the past year #946
This file contains hidden or 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: RST Check | |
| on: [push, pull_request] | |
| jobs: | |
| build_wheels: | |
| name: rstcheck ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install requirements | |
| run: python -m pip install -r requirements.txt | |
| - name: Install rstcheck | |
| run: python -m pip install sphinx tomli rstcheck[toml,sphinx] | |
| - name: rstcheck | |
| run: find _doc teachpyx -name "*.rst" ! -path "_doc/articles/2026/2026-03-15-route2026-ml.rst" -print0 | xargs -0 -r rstcheck |