Skip to content

feat: Integrate GitHub Gist functionality and environment variables s… #8

feat: Integrate GitHub Gist functionality and environment variables s…

feat: Integrate GitHub Gist functionality and environment variables s… #8

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")