Skip to content

lint.yml: add libyaml-libyaml-perl dependency for linter #21

lint.yml: add libyaml-libyaml-perl dependency for linter

lint.yml: add libyaml-libyaml-perl dependency for linter #21

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 libyaml-libyaml-perl
- 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.