Update n98-magerun2 CLI to use a single insert with column names per row #388
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'ShellCheck' | |
on: | |
push: | |
paths: | |
- 'compose/bin/**' | |
branches: | |
- "master" | |
pull_request: | |
paths: | |
- 'compose/bin/**' | |
jobs: | |
shellcheck: | |
name: shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
id: check | |
env: | |
SHELLCHECK_OPTS: -x -e SC2181 -P compose/bin -P compose/env | |
with: | |
check_together: true | |
scandir: './compose/bin' |