This repository was archived by the owner on Sep 4, 2025. It is now read-only.
Avoid rebuilding HostAuthorization::Permissions over and over #1
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: Devcontainer Shellcheck | |
| on: | |
| pull_request: | |
| paths: | |
| - ".devcontainer/**/*.sh" | |
| push: | |
| paths: | |
| - ".devcontainer/**/*.sh" | |
| permissions: | |
| contents: read | |
| jobs: | |
| devcontainer_shellcheck: | |
| name: Devcontainer Shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout (GitHub) | |
| uses: actions/checkout@v4 | |
| - name: Lint Devcontainer Scripts | |
| run: | | |
| find .devcontainer/ -name '*.sh' -print0 | xargs -0 shellcheck |