From b3c6563edcf6652a21249a183d4e7db3757e7fb2 Mon Sep 17 00:00:00 2001 From: Shay Palachy Date: Wed, 1 May 2024 21:44:37 +0300 Subject: [PATCH] add RST linting to workflows --- .github/workflows/lint.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..b126d71 --- /dev/null +++ b/.github/workflows/lint.yml @@ -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