Skip to content

Commit 84e7066

Browse files
sh1pt-actions-fleet[bot]ralyodioclaude
authored
sh1pt: install Node pnpm Test (node-pnpm-test@1.1.0) (#5)
* Add .github/workflows/test.yml via sh1pt node-pnpm-test@1.1.0 * Convert test workflow to Go (go test ./...) agentbbs is a Go project (go.mod, go 1.26); the Node/pnpm workflow could never pass here — pnpm/action-setup found no packageManager. Replace with go test ./... and trigger on main (was master-only). Build/vet live in ci.yml. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> --------- Co-authored-by: sh1pt-actions-fleet[bot] <287014002+sh1pt-actions-fleet[bot]@users.noreply.github.com> Co-authored-by: Anthony Ettinger <anthony@profullstack.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent e75f751 commit 84e7066

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Go tests for agentbbs. agentbbs is a Go project (see go.mod); this runs the
2+
# package tests on pull requests and pushes to main. Build/vet live in ci.yml.
3+
name: test
4+
5+
on:
6+
pull_request:
7+
push:
8+
branches: [main, master]
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
test:
15+
runs-on: ubuntu-latest
16+
timeout-minutes: 15
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- uses: actions/setup-go@v5
21+
with:
22+
go-version: '1.26'
23+
cache: true
24+
25+
- run: go test ./...

0 commit comments

Comments
 (0)