fix(ci): act runner compatibility
CI / test (pull_request) Successful in 2m28s

- Default shell to sh (act runner image lacks bash)
- Drop -race flag (requires cgo, unavailable in act runner)
This commit is contained in:
2026-05-21 11:07:37 -04:00
parent b9b3f99be9
commit a9da5c1765
+4 -1
View File
@@ -8,6 +8,9 @@ on:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: sh
steps:
- uses: actions/checkout@v4
@@ -28,7 +31,7 @@ jobs:
fi
- name: Test
run: go test -race -count=1 ./...
run: go test -count=1 ./...
- name: Build
run: go build -trimpath -o nib .