Skip to content

Commit

Permalink
[ci] create go.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LingkKang committed Jan 8, 2024
1 parent 9599e2c commit 3acea10
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Go

on:
push:
branches:
- master
- test

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '^1.21.5'

- name: Build
run: |
cd server
go build -v ./cmd/main.go
- name: Test
run: |
cd server
go test -timeout 30s -run ^TestGenerateChecksum$ rpc_demo_server/pkg/protocol
go test -timeout 30s -run ^TestParsePayloadToFloat64s_normal$ rpc_demo_server/pkg/protocol

0 comments on commit 3acea10

Please sign in to comment.