Skip to content

README.md: set cc=72 tw=70 #18

README.md: set cc=72 tw=70

README.md: set cc=72 tw=70 #18

Workflow file for this run

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.