README.md: minor spellfix #4
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
name: Lint CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install lint dependencies | |
run: sudo apt-get install -y shellcheck | |
# - name: Check man pages for errors (requires mandoc) | |
# run: cd man && make lint | |
# FIXME: fix completion lint errors | |
# - name: Check completion scripts for errors | |
# run: cd completion && make lint | |
# End of file. |