Fix logic around grml_sources handling no longer being bind-mounted #198
Workflow file for this run
This file contains 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
# PR Review workflows. | |
name: pr-review | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
jobs: | |
shellcheck-code: | |
name: shellcheck main code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: shellcheck | |
uses: reviewdog/action-shellcheck@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
path: "." | |
pattern: | | |
grml-live | |
scripts/*.sh | |
remaster/grml-live-remaster | |
etc/grml/fai/config/hooks/* | |
etc/grml/fai/config/scripts/* | |
check_all_files_with_shebangs: "false" | |
shellcheck-tests: | |
name: shellcheck test scripts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: shellcheck | |
uses: reviewdog/action-shellcheck@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
path: tests | |
pattern: | | |
*.sh | |
check_all_files_with_shebangs: "false" |