[next-gen] Add IConfiguration/Options binding and bootstrap for the mini-SDK #2049
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: | |
branches: [ main ] | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag: v4.2.2 | |
- name: Install shellcheck | |
run: sudo apt update && sudo apt install --assume-yes shellcheck | |
- name: Run shellcheck | |
run: find . -name \*.sh -o -name \*.sh.template | xargs shellcheck --severity=warning |