From 33a0414c6dc89f97c9f538b6d04931038c669153 Mon Sep 17 00:00:00 2001 From: David Zuelke Date: Wed, 26 Jun 2024 17:27:24 +0200 Subject: [PATCH] Fix CI workflow to use bash as shell instead of sh From https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idcontainer: > Note: The default shell for run steps inside a container is sh instead of bash. This can be overridden with jobs..defaults.run or jobs..steps[*].shell. --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bbc8badd3..0eed44b8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,10 @@ on: permissions: contents: read +defaults: + run: + shell: bash + jobs: unit-test: