1# Copyright (C) Viktor Szakats 2# 3# SPDX-License-Identifier: curl 4 5name: shellcheck 6 7on: 8 push: 9 branches: 10 - master 11 pull_request: 12 branches: 13 - master 14 15concurrency: 16 group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} 17 cancel-in-progress: true 18 19permissions: {} 20 21jobs: 22 shellcheck: 23 runs-on: ubuntu-latest 24 timeout-minutes: 5 25 steps: 26 - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 27 - name: 'shellcheck' 28 run: .github/scripts/shellcheck.sh 29