ci: Specify bash as default shell in workflows (#2772)

This commit is contained in:
Ayaz Salikhov
2025-11-12 13:34:53 +00:00
committed by GitHub
parent 893daab8f8
commit 59b7b249ff
13 changed files with 52 additions and 22 deletions

View File

@@ -33,6 +33,10 @@ on:
required: true
type: boolean
defaults:
run:
shell: bash
jobs:
unit_tests:
name: Unit testing
@@ -59,7 +63,6 @@ jobs:
name: clio_tests_${{ runner.os }}_${{ inputs.build_type }}_${{ inputs.conan_profile }}
- name: Make clio_tests executable
shell: bash
run: chmod +x ./clio_tests
- name: Run clio_tests (regular)
@@ -72,7 +75,6 @@ jobs:
- name: Check for sanitizer report
if: ${{ env.SANITIZER_IGNORE_ERRORS == 'true' }}
shell: bash
id: check_report
run: |
if ls .sanitizer-report/* 1> /dev/null 2>&1; then