DAOS-16477 mgmt: return suspect engines for pool healthy query #10054
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: bash Unit Testing | |
on: | |
pull_request: | |
concurrency: | |
group: bash-unit-test-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash --noprofile --norc -ueo pipefail {0} | |
permissions: {} | |
jobs: | |
Test-gha-functions: | |
name: Tests in ci/gha_functions.sh | |
if: github.repository == 'daos-stack/daos' | |
runs-on: [self-hosted, light] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Checkout bash_unit project | |
uses: actions/checkout@v4 | |
with: | |
repository: 'pgrange/bash_unit' | |
path: bash_unit | |
- name: Unit testing with bash_unit | |
run: FORCE_COLOR=true ./bash_unit/bash_unit ci/gha_functions.sh |