fix(ci): use sh instead of bash for act runner compatibility
CI / test (push) Failing after 1m25s

Gitea act runner image lacks bash, causing all run steps to fail with
exit 127. Default shell to sh which is available in all images.
This commit is contained in:
2026-05-21 10:54:34 -04:00
parent 8fc686ec6d
commit cae651302a
+3
View File
@@ -8,6 +8,9 @@ on:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: sh
steps:
- uses: actions/checkout@v4