[docker-in-docker] - Move the iptables switching logic in the docker-init script and isolated tests for specific cases #3534
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "CI - Shell Script Linter" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| shellchecker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Shell Linter | |
| uses: azohra/shell-linter@v0.8.0 | |
| with: | |
| path: "src/**/*.sh" | |
| severity: "error" # [style, info, warning, error] | |
| env: | |
| SHELLCHECK_OPTS: -e SC2072 # Acceptable use of decimal comparison |