Skip to content

Commit

Permalink
add RST linting to workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
shaypal5 committed May 1, 2024
1 parent 67c4c67 commit b3c6563
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: RST Lint

on:
push:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v4.0.0

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Instal dependencies
run: pip install rst-lint

- name: RST Lint
run: rst-lint README.rst

0 comments on commit b3c6563

Please sign in to comment.