TODO.md: remove trailing dot #19
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: Lint src files for errors | |
run: cd src && make lint | |
# - name: Lint man pages for errors (requires mandoc) | |
# run: cd man && make lint | |
# - name: Lint completion scripts for errors | |
# run: cd completion && make lint | |
# End of file. |