trixie: Fix behaviour on IPv6-only setups. #67
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: Run Shellcheck on push and PR | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| shellcheck: | |
| name: Shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@master | |
| env: | |
| SHELLCHECK_OPTS: -x | |
| with: | |
| additional_files: bookworm trixie switchtoStable switchtoTesting switchtoUnstable | |
| ignore_paths: ./bullseye |