aboutsummaryrefslogtreecommitdiffstats
path: root/.depot/workflows/shellcheck.yml
blob: 99a2c4342fbf4775e7be0955a2273deba6e47c75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"