Skip to content

#2 feat: add shellcheck workflow #12

#2 feat: add shellcheck workflow

#2 feat: add shellcheck workflow #12

Workflow file for this run

name: Shellcheck Action
on: [ push, pull_request ]
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Copy .env.example to .env
run: cp .env.example .env
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
check_together: 'yes'
external: 'yes'