utils: Fix typo libkmod log messages prefix #10
Workflow file for this run
This file contains hidden or 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 files using restructuredtext-lint | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: rst-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout libblockdev repository | |
| uses: actions/checkout@v7 | |
| - name: Install restructuredtext-lint | |
| run: | | |
| sudo apt -qq update | |
| sudo apt -y -qq install python3-restructuredtext-lint | |
| - name: Run restructuredtext-lint | |
| run: | | |
| rst-lint *.rst tests/*.rst |