Skip to content

Commit

Permalink
ci: fix set test action shell to bash
Browse files Browse the repository at this point in the history
Signed-off-by: Marko Kungla <[email protected]>
  • Loading branch information
mkungla committed Jan 29, 2024
1 parent fa7a168 commit dfcd385
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/go-test-monorepo-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,14 @@ runs:

- name: Determine OS
id: determine-os
shell: bash
run: |
echo "os=$(echo $RUNNER_OS | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
shell: bash
- name: Run tests and generate coverage for all modules
id: coveredmodules
shell: bash
run: |
if [[ "${{ steps.determine-os.outputs.os }}" == "linux" ]]; then
./.github/actions/go-test-monorepo-action/go-test-monorepo-action.sh ${{ inputs.only-module-list }}
Expand Down

0 comments on commit dfcd385

Please sign in to comment.