Skip to content

Commit

Permalink
Appease shellcheck
Browse files Browse the repository at this point in the history
We use actionlint, which (among other things) runs shellcheck against
the steps of our workflows. shellcheck doesn't like these variable
references without surrounding double quotes. While I doubt either of
these will ever contain a space, it's easier to just add the quotes to
make shellcheck happy.
  • Loading branch information
jfly committed Aug 23, 2023
1 parent 04b8873 commit 8a68f0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ jobs:

- name: Install bats-core
run: |
git clone --depth 1 --branch v1.6.0 https://github.com/bats-core/bats-core.git $HOME/bats-core
git clone --depth 1 --branch v1.6.0 https://github.com/bats-core/bats-core.git "$HOME/bats-core"
echo "$HOME/bats-core/bin" >>"$GITHUB_PATH"
- name: Run tests
run: |
asdf plugin-add direnv $GITHUB_WORKSPACE
asdf plugin-add direnv "$GITHUB_WORKSPACE"
asdf install direnv ${{ matrix.direnv }}
asdf global direnv ${{ matrix.direnv }}
make test
Expand Down

0 comments on commit 8a68f0f

Please sign in to comment.