Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2dae0e5

Browse files
committed
add ci build job
1 parent14fb02b commit2dae0e5

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

‎.github/workflows/go.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name:Unit Tests
2+
on:[push, pull_request]
3+
4+
permissions:
5+
contents:read
6+
7+
jobs:
8+
build:
9+
strategy:
10+
fail-fast:false
11+
os:[ubuntu-latest, windows-latest, macos-latest]
12+
runs-on:${{ matrix.os }}
13+
14+
steps:
15+
-name:Check out code
16+
uses:actions/checkout@v4
17+
18+
-name:Set up Go
19+
uses:actions/setup-go@v5
20+
with:
21+
go-version-file:"go.mod"
22+
23+
-name:Download dependencies
24+
run:go mod download
25+
26+
-name:Run unit and integration tests
27+
run:go test -race ./...
28+
29+
-name:Build
30+
run:go build -v ./cmd/github-mcp-server

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp