Skip to content

feat(operations.git): support port and ssh://, https:// URLs #28

feat(operations.git): support port and ssh://, https:// URLs

feat(operations.git): support port and ssh://, https:// URLs #28

Workflow file for this run

name: Shellcheck
on:
push:
branches:
- 3.x
- 2.x
- 1.x
- 0.x
pull_request:
permissions:
contents: read
jobs:
shellcheck:
name: Check shell scripts
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- name: Install shellcheck
run: sudo apt-get update && sudo apt-get install -y shellcheck
- name: Run shellcheck
run: |
git grep -l '^#\( *shellcheck \|!\(/bin/\|/usr/bin/env \)\(sh\|bash\|dash\|ksh\)\)' -- ':!*.py' \
| xargs shellcheck