Add missing retryable write case to pseudo code #2680
Workflow file for this run
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: Check RST file syntax | |
on: | |
push: | |
branches: [master] | |
pull_request: ~ | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip3 install rstcheck==3.3.1 sphinx==4.5.0 | |
- name: Check RST files with rstcheck | |
run: | | |
rstcheck -r source/ --ignore-language c,python,java --report error |