This repository has been archived by the owner on May 28, 2024. It is now read-only.
Remove officially unmaintained collections #480
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
--- | |
on: [push, pull_request] | |
name: Lint | |
jobs: | |
rstcheck: | |
name: Validate rst | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/checkout@v2" | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install python3-setuptools | |
sudo python -m pip install --upgrade pip | |
sudo pip install rstcheck | |
- name: run rstcheck | |
run: rstcheck --report-level error *.rst |