Skip to content

Commit

Permalink
ci: test solution to SC2086
Browse files Browse the repository at this point in the history
  • Loading branch information
RoryPTB committed Jul 30, 2024
1 parent 96b1c7f commit 9687383
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ jobs:
shell: bash

- name: Set config environment variable
# shellcheck disable=SC2086
run: echo "WIS2DOWNLOADER_CONFIG=$PWD/config.json" >> $GITHUB_ENV
run: |
CONFIG_PATH="$PWD/config.json"
echo "WIS2DOWNLOADER_CONFIG=$CONFIG_PATH" >> $GITHUB_ENV
- name: Install requirements 📦
run: |
Expand Down

0 comments on commit 9687383

Please sign in to comment.