diff options
Diffstat (limited to '.depot/workflows/shellcheck.yml')
| -rw-r--r-- | .depot/workflows/shellcheck.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.depot/workflows/shellcheck.yml b/.depot/workflows/shellcheck.yml new file mode 100644 index 00000000..99a2c434 --- /dev/null +++ b/.depot/workflows/shellcheck.yml @@ -0,0 +1,20 @@ +# Depot CI Migration +# Source: .github/workflows/shellcheck.yml +# +# No changes were necessary. + +name: Shellcheck +on: + push: + branches: [main] + pull_request: + branches: [main] +jobs: + shellcheck: + runs-on: depot-ubuntu-24.04 + steps: + - uses: actions/checkout@v6 + - name: Run shellcheck + uses: ludeeus/action-shellcheck@master + env: + SHELLCHECK_OPTS: "-e SC2148" |
