Skip to content

feat(RELEASE-2092): improve KubeArchive fallback reliability #2

feat(RELEASE-2092): improve KubeArchive fallback reliability

feat(RELEASE-2092): improve KubeArchive fallback reliability #2

Workflow file for this run

---
name: Bash Tests for Pull Requests
on:
pull_request:
types:
- opened
- synchronize
- reopened
merge_group:
types: [checks_requested]
jobs:
bash:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
- name: Run bash tests
run: |
rc=0
for t in utils/tests/test_*; do
[[ "$t" == *.py ]] && continue
echo "=== Running $t ==="
bash "$t" || rc=1
done
exit $rc