Skip to content

README.md: add newline #16

README.md: add newline

README.md: add newline #16

Workflow file for this run

name: Shellcheck CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install shellcheck
run: sudo apt-get install -y shellcheck
- name: Check shell scripts for errors
run: make -f Makefile.lint shellcheck
# End of file.