fix(runner): install refuses a box registered to another repo #14
1 changed files with 8 additions and 2 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
|
@ -10,7 +10,13 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: shellcheck
|
- name: shellcheck
|
||||||
# -x follows the `source=SCRIPTDIR/...` directives into commands/lib/.
|
# -x follows the `source=SCRIPTDIR/...` directives into commands/lib/.
|
||||||
# commands/*.sh does not glob into lib/, so list it explicitly.
|
# globstar so a script in a new subdirectory is linted without anyone
|
||||||
run: shellcheck -x install.sh bin/rig commands/*.sh commands/lib/*.sh test/cli.sh
|
# remembering to edit this list; bin/* covers the extensionless entrypoints.
|
||||||
|
# The file list is printed so under-coverage shows up in the log.
|
||||||
|
run: |
|
||||||
|
shopt -s globstar
|
||||||
|
files=(bin/* **/*.sh)
|
||||||
|
printf 'shellcheck: %s\n' "${files[@]}"
|
||||||
|
shellcheck -x "${files[@]}"
|
||||||
- name: cli tests
|
- name: cli tests
|
||||||
run: bash test/cli.sh
|
run: bash test/cli.sh
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue