Skip to content

docs(readme): Add clickable links to all badges: #6

docs(readme): Add clickable links to all badges:

docs(readme): Add clickable links to all badges: #6

Workflow file for this run

name: ShellCheck
on:
push:
paths:
- '**.sh'
pull_request:
paths:
- '**.sh'
jobs:
shellcheck:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Run ShellCheck
run: |
shellcheck --severity=warning --enable=all --shell=bash \
$(find . -type f -name "*.sh")