Skip to content

Typo fixup

Typo fixup #64

Workflow file for this run

name: Lint
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.12
- name: Install lint tools
run: 'pip install Pygments restructuredtext-lint'
- name: Lint docs
run: rst-lint --encoding=utf-8 README.rst