12345678910111213141516171819202122232425262728 |
- # Copyright (C) Viktor Szakats
- #
- # SPDX-License-Identifier: curl
- name: shellcheck
- on:
- push:
- branches:
- - master
- pull_request:
- branches:
- - master
- concurrency:
- group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
- cancel-in-progress: true
- permissions: {}
- jobs:
- shellcheck:
- runs-on: ubuntu-latest
- timeout-minutes: 5
- steps:
- - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- - name: 'shellcheck'
- run: .github/scripts/shellcheck.sh
|